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__",
"description": "__MSG_appDescription__",
"version": "0.0.1",
"icons": {
"16": "icon\/icon16.png",
"32": "icon\/icon32.png",
"48": "icon\/icon48.png",
"128": "icon\/icon128.png"
},
"permissions": [
"tabs",
"sidePanel"
],
"side_panel": {
"default_path": "sidepanel.html"
},
"action": {
"default_title": "DeepWiki",
"default_icon": {
"16": "icon\/icon16.png",
"32": "icon\/icon32.png",
"48": "icon\/icon48.png",
"128": "icon\/icon128.png"
}
},
"host_permissions": [
"*:\/\/github.com\/*\/*"
],
"default_locale": "en",
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/github.com\/*\/*"
],
"run_at": "document_end",
"js": [
"content-scripts\/content.js"
]
}
]
}