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",
"name": "Google search URL Cleaner",
"description": "\u8c37\u6b4c\u641c\u7d22\u7ed3\u679c\u9875url\u680f\u9690\u85cf",
"version": "1.0",
"icons": {
"16": "url-cleaner-16.png",
"48": "url-cleaner-48.png",
"128": "url-cleaner-128.png"
},
"browser_action": {
"default_popup": "hello.html",
"default_icon": "url-cleaner-48.png"
},
"content_scripts": [
{
"js": [
"gurl.js"
],
"matches": [
"http:\/\/www.google.com\/search*",
"https:\/\/www.google.com\/search*"
],
"run_at": "document_end"
}
],
"manifest_version": 2,
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+F",
"mac": "MacCtrl+Shift+F"
},
"description": "Opens hello.html"
}
}
}