No need click continue button any more when open external links. Support 知乎zhihu.com, 简书jianshu.com, 稀土掘金juejin.cn, CSDN csdn.net
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "__MSG_appName__",
"version": "1.0",
"description": "__MSG_appDesc__",
"default_locale": "en",
"icons": {
"16": "images/icon-16.png",
"32": "images/icon-32.png",
"48": "images/icon-48.png",
"128": "images/icon-128.png"
},
"action": {
"default_popup": "popup.html"
},
"permissions": [
"tabs",
"storage"
],
"content_scripts": [
{
"js": [
"scripts/content.js"
],
"matches": [
"https://*.zhihu.com/*",
"https://*.jianshu.com/*",
"https://*.juejin.cn/*",
"https://*.csdn.net/*"
]
}
],
"background": {
"service_worker": "background.js"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}