Inspect and view changes in StarIt-标签收藏 source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "StarIt-标签收藏",
"version": "1.0.8",
"description": "标签收藏插件",
"author": "sxei",
"icons": {
"48": "icon.png",
"128": "icon.png"
},
"action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https://www.google.com/*",
"https://*.bing.com/*",
"https://www.baidu.com/*"
],
"css": [
"content/index.css"
],
"js": [
"content/jquery.min.js",
"content/index.js"
],
"run_at": "document_end"
}
],
"permissions": [
"storage",
"contextMenus",
"tabs",
"notifications",
"scripting",
"webRequest"
],
"host_permissions": [
"<all_urls>"
]
}