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": "Wikipedia Search",
"version": "11",
"author": "Corbin Davenport",
"homepage_url": "https:\/\/github.com\/corbindavenport\/wikipedia-search",
"description": "Search Wikipedia in every language from the address bar and context menu.",
"options_ui": {
"page": "settings.html",
"open_in_tab": false
},
"omnibox": {
"keyword": "wiki"
},
"permissions": [
"contextMenus",
"storage",
"notifications"
],
"minimum_chrome_version": "93",
"host_permissions": [
"https:\/\/*.wikipedia.org\/*"
],
"background": {
"service_worker": "js\/background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.wikipedia.org\/*"
],
"js": [
"js\/contentscript.js"
],
"run_at": "document_end"
}
],
"icons": {
"32": "img\/icon32.png",
"48": "img\/icon48.png",
"128": "img\/icon128.png"
}
}