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": "__MSG_appName__",
"version": "1.0.4",
"description": "__MSG_appDescription__",
"short_name": "__MSG_appShortName__",
"default_locale": "en",
"permissions": [
"activeTab",
"storage",
"contextMenus"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"file:\/\/*\/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_end"
}
],
"action": {
"default_popup": "popup.html",
"default_title": "__MSG_appName__",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png"
}
},
"commands": {
"toggle-xpath-mode": {
"suggested_key": {
"default": "Ctrl+Shift+X",
"mac": "Command+Shift+Y"
},
"description": "__MSG_toggleXPathMode__"
}
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"web_accessible_resources": [
{
"resources": [
"sidebar.html",
"onboarding.html",
"_locales\/*\/messages.json",
"i18n\/chrome-i18n.js",
"icons\/*.png"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"file:\/\/*\/*"
]
}
]
}