Inspect and view changes in Tag Sider 关键词侧边栏 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
{
"manifest_version": 3,
"name": "Tag Sider 关键è¯ä¾§è¾¹æ ",
"version": "1.2.0",
"description": "Tag Sider,快æ·é”®Alt+P",
"author": "Raoguai",
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "icons/tag16x16.png",
"32": "icons/tag32x32.png",
"48": "icons/tag48x48.png"
},
"web_accessible_resources": [
{
"resources": [
"popup.html"
],
"matches": [
"<all_urls>"
]
}
],
"content_scripts": [
{
"matches": [
"https://example.com/popup.html"
],
"js": [
"background.js"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"permissions": [
"scripting",
"activeTab",
"tabs",
"management",
"commands",
"clipboardWrite",
"clipboardRead"
],
"commands": {
"my-command": {
"suggested_key": {
"windows": "Alt+P",
"mac": "Alt+P",
"chromeos": "Alt+P",
"linux": "Alt+P"
},
"description": "Open My Extension popup"
}
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}