Inspect and view changes in ImageSidebar - 图片采集侧边栏 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": "ImageSidebar - 图片采集侧边æ ",
"version": "1.0",
"description": "收集网页ä¸çš„所有图片,集ä¸æ˜¾ç¤ºåœ¨ä¾§è¾¹æ ä¸ï¼Œç‚¹å‡»å³å¯å¤åˆ¶æˆ–下载,轻æ¾æ”¶é›†ä»»ä½•å›¾ç‰‡ã€‚",
"permissions": [
"activeTab",
"storage",
"clipboardWrite",
"contextMenus",
"scripting",
"declarativeNetRequest",
"downloads"
],
"host_permissions": [
"<all_urls>"
],
"action": {
"default_icon": {
"16": "icons/icon16.png",
"32": "icons/icon32.png"
},
"default_title": "打开图片侧边æ / Open Image Sidebar"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"options_page": "options.html",
"declarative_net_request": {
"rule_resources": [
{
"id": "ruleset_1",
"enabled": true,
"path": "rules.json"
}
]
},
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}