nang-dev / hover-paywalls-browser-extension

Hover is an open-sourced browser extension that bypasses paywalls and blocks ads.
1.1k stars 148 forks source link

Manifest version 2 is deprecated, and support will be removed in 2023. See https://developer.chrome.com/blog/mv2-transition/ for more details. #198

Open e1bandido opened 11 months ago

e1bandido commented 11 months ago

Manifest version 2 is deprecated, and support will be removed in 2023. See https://developer.chrome.com/blog/mv2-transition/ for more details.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 { "name": "Hover - Bypass Paywalls", "description": "An undetectable, lightweight extension that allows you to access important information with ease and without distractions.", "manifest_version": 2, "version": "2.2.8", "background": { "scripts": ["bg_scripts/tab_data.js", "bg_scripts/adblock_scripts/ad_domains.js", "bg_scripts/adblock_scripts/adblock_storage.js", "bg_scripts/adblock_scripts/adblock.js", "bg_scripts/paywall_scripts/paywall_sites.js", "bg_scripts/paywall_scripts/paywall_bypass.js", "bg_scripts/paywall_scripts/paywall_storage.js", "bg_scripts/paywall_scripts/paywall_cookies.js", "bg_scripts/paywall_scripts/paywall_spoof.js", "bg_scripts/paywall_scripts/paywall_SM.js", "bg_scripts/paywall_scripts/paywall_lists.js", "bg_scripts/auto_update.js" ] }, "browser_action": { "default_popup": "popup.html" }, "permissions": ["webRequest", "webRequestBlocking", "http:///", "https:///", "storage", "background", "contentSettings"], "icons": { "16": "logo16.png", "48": "logo48.png", "128": "logo128.png" } }