Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "EasyComment",
"version": "2.6",
"description": "A tool to help manage and format comments",
"permissions": [
"storage",
"contextMenus",
"activeTab",
"commands",
"sidePanel"
],
"commands": {
"open-comment-selector": {
"suggested_key": {
"default": "Alt+U",
"mac": "Command+U"
},
"description": "\u6253\u5f00\u8bc4\u8bba\u9009\u62e9\u5668"
}
},
"action": {
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"side_panel": {
"default_path": "sidebar.html"
},
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"contentScript.js"
]
}
],
"options_ui": {
"page": "shortcuts.html",
"open_in_tab": true
}
}