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": "Quick Jump Links - \u5feb\u901f\u8df3\u8f6c\u94fe\u63a5",
"description": "Easily jump between your favorite links with a simple keyboard shortcut. \/ \u901a\u8fc7\u7b80\u5355\u7684\u5feb\u6377\u952e\u5728\u4f60\u559c\u7231\u7684\u94fe\u63a5\u4e4b\u95f4\u5feb\u901f\u8df3\u8f6c\u3002",
"action": {
"default_icon": "icon.png",
"default_title": "Quick Jump Links - \u5feb\u901f\u8df3\u8f6c\u94fe\u63a5",
"default_popup": "popup.html"
},
"icons": {
"16": "icon.png",
"32": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"version": "1.0.1",
"permissions": [
"storage"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"\/js\/jquery-3.7.1.min.js",
"content.js"
]
}
],
"commands": {
"jump-to-link-1": {
"suggested_key": {
"default": "Ctrl+Shift+1"
},
"description": "Go to link 1"
},
"jump-to-link-2": {
"suggested_key": {
"default": "Ctrl+Shift+2"
},
"description": "Go to link 2"
},
"jump-to-link-3": {
"suggested_key": {
"default": "Ctrl+Shift+3"
},
"description": "Go to link 3"
},
"jump-to-link-4": {
"suggested_key": {
"default": "Ctrl+Shift+4"
},
"description": "Go to link 4"
}
},
"options_page": "popup.html",
"default_locale": "en"
}