Inspect and view changes in 历史搜索助手 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": 2,
"name": "历史搜索助手",
"description": "可以对历史进行全文搜索的工具",
"version": "1.1.0",
"icons": {
"200": "icon.png"
},
"permissions": [
"<all_urls>",
"storage"
],
"browser_action": {
"default_icon": "icon.png",
"default_title": "历史搜索"
},
"background": {
"scripts": [
"background.js"
]
},
"options_ui": {
"page": "options.html"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"contentscripts.js"
],
"run_at": "document_end",
"all_frames": false
}
],
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+Q"
}
}
},
"browser_specific_settings": {
"gecko": {
"id": "{4429403f-4859-4c46-92bc-58b3af61503a}"
}
}
}