Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion elm/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
ELM version number
"""

__version__ = "0.0.26"
__version__ = "0.0.27"
5 changes: 2 additions & 3 deletions elm/web/utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
_BT_RENAME = {"chromium": "Chrome", "firefox": "Firefox",
"webkit": "Safari"}
# block pages by resource type. e.g. image, stylesheet
BLOCK_RESOURCE_TYPES = [
BLOCK_RESOURCE_TYPES = {
"beacon",
"csp_report",
"font",
Expand All @@ -48,7 +48,7 @@
# 'stylesheet',
# 'script',
# 'xhr',
]
}
# block popular 3rd party resources like tracking and advertisements.
BLOCK_RESOURCE_NAMES = [
"adzerk",
Expand All @@ -58,7 +58,6 @@
"exelator",
"facebook",
"fontawesome",
"google",
"google-analytics",
"googletagmanager",
"lit.connatix", # <- not sure about this one
Expand Down
Loading