diff --git a/wpull/scraper/html.py b/wpull/scraper/html.py
index cbc7894..f2b754c 100644
--- a/wpull/scraper/html.py
+++ b/wpull/scraper/html.py
@@ -375,7 +375,7 @@ def iter_links_link_element(self, element):
rel = element.attrib.get('rel', '')
stylesheet = 'stylesheet' in rel
icon = 'icon' in rel
- inline = stylesheet or icon
+ inline = any((stylesheet, icon, 'manifest' in rel, 'preload' in rel, 'prefetch' in rel))
if stylesheet:
link_type = LinkType.css