Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "SideWiki \u2013 Sidebar for Wikipedia",
"version": "1.0",
"description": "A sidebar that shows Wikipedia in dark mode. Right-click selected text to search instantly in the sidebar.",
"permissions": [
"sidePanel",
"declarativeNetRequest",
"storage",
"contextMenus",
"notifications"
],
"host_permissions": [
"https:\/\/*.wikipedia.org\/*"
],
"action": {
"default_title": "Open SideWiki"
},
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"side_panel": {
"default_path": "panel.html"
},
"options_page": "options.html",
"web_accessible_resources": [
{
"resources": [
"icons\/*"
],
"matches": [
"<all_urls>"
]
}
],
"content_scripts": [
{
"matches": [
"https:\/\/*.wikipedia.org\/*"
],
"js": [
"iframe-listener.js"
],
"all_frames": true,
"run_at": "document_end",
"world": "ISOLATED"
}
]
}