mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-02 00:42:45 +01:00
0325dcdcb4
As per discussion with uBO volunteers. Volunteers offering support for uBO will be able to craft links with specially formed URLs, which once clicked will cause uBO to automatically force an update of specified filter lists. The URL must be crafted as shown in the example below: https://ublockorigin.github.io/uAssets/update-lists.html?listkeys=ublock-filters,easylist Where the `listkeys` parameter is a comma-separated list of tokens corresponding to filter lists. If a token does not match an enabled filter list, it will be ignored. The ability to update filter lists through a specially crafted link is available only on uBO's own support sites: - https://github.com/uBlockOrigin/ - https://reddit.com/r/uBlockOrigin/ - https://ublockorigin.github.io/ Additionally, a visual cue has been added in the "Filter lists" pane to easily spot the filter lists which have been recently updated, where "recently" is currently defined as less than an hour ago.
116 lines
2.6 KiB
JSON
116 lines
2.6 KiB
JSON
{
|
|
"author": "Raymond Hill & contributors",
|
|
"background": {
|
|
"page": "background.html"
|
|
},
|
|
"browser_action": {
|
|
"default_icon": {
|
|
"16": "img/icon_16.png",
|
|
"32": "img/icon_32.png",
|
|
"64": "img/icon_64.png"
|
|
},
|
|
"default_title": "uBlock Origin",
|
|
"default_popup": "popup-fenix.html"
|
|
},
|
|
"commands": {
|
|
"launch-element-zapper": {
|
|
"description": "__MSG_popupTipZapper__"
|
|
},
|
|
"launch-element-picker": {
|
|
"description": "__MSG_popupTipPicker__"
|
|
},
|
|
"launch-logger": {
|
|
"description": "__MSG_popupTipLog__"
|
|
},
|
|
"open-dashboard": {
|
|
"description": "__MSG_popupTipDashboard__"
|
|
},
|
|
"relax-blocking-mode": {
|
|
"description": "__MSG_relaxBlockingMode__"
|
|
},
|
|
"toggle-cosmetic-filtering": {
|
|
"description": "__MSG_toggleCosmeticFiltering__"
|
|
}
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": [
|
|
"http://*/*",
|
|
"https://*/*"
|
|
],
|
|
"js": [
|
|
"/js/vapi.js",
|
|
"/js/vapi-client.js",
|
|
"/js/contentscript.js"
|
|
],
|
|
"all_frames": true,
|
|
"match_about_blank": true,
|
|
"run_at": "document_start"
|
|
},
|
|
{
|
|
"matches": [
|
|
"https://easylist.to/*",
|
|
"https://*.fanboy.co.nz/*",
|
|
"https://filterlists.com/*",
|
|
"https://forums.lanik.us/*",
|
|
"https://github.com/*",
|
|
"https://*.github.io/*",
|
|
"https://*.letsblock.it/*"
|
|
],
|
|
"js": [
|
|
"/js/scriptlets/subscriber.js"
|
|
],
|
|
"run_at": "document_idle",
|
|
"all_frames": false
|
|
},
|
|
{
|
|
"matches": [
|
|
"https://github.com/uBlockOrigin/*",
|
|
"https://ublockorigin.github.io/*",
|
|
"https://*.reddit.com/r/uBlockOrigin/*"
|
|
],
|
|
"js": [
|
|
"/js/scriptlets/updater.js"
|
|
],
|
|
"run_at": "document_idle",
|
|
"all_frames": false
|
|
}
|
|
],
|
|
"content_security_policy": "script-src 'self'; object-src 'self'",
|
|
"default_locale": "en",
|
|
"description": "__MSG_extShortDesc__",
|
|
"icons": {
|
|
"16": "img/icon_16.png",
|
|
"32": "img/icon_32.png",
|
|
"64": "img/icon_64.png",
|
|
"128": "img/icon_128.png"
|
|
},
|
|
"incognito": "split",
|
|
"manifest_version": 2,
|
|
"minimum_chrome_version": "73.0",
|
|
"name": "uBlock Origin",
|
|
"options_ui": {
|
|
"page": "dashboard.html",
|
|
"open_in_tab": true
|
|
},
|
|
"permissions": [
|
|
"contextMenus",
|
|
"privacy",
|
|
"storage",
|
|
"tabs",
|
|
"unlimitedStorage",
|
|
"webNavigation",
|
|
"webRequest",
|
|
"webRequestBlocking",
|
|
"<all_urls>"
|
|
],
|
|
"short_name": "uBlock₀",
|
|
"storage": {
|
|
"managed_schema": "managed_storage.json"
|
|
},
|
|
"version": "1.15.11.0",
|
|
"web_accessible_resources": [
|
|
"/web_accessible_resources/*"
|
|
]
|
|
}
|