Inspect and view changes in Wiki Hover source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Wiki Hover",
"version": "1.0.0",
"description": "Instantly access Wikipedia information by hovering over terms on any webpage.",
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage",
"alarms",
"scripting",
"activeTab"
],
"host_permissions": [
"<all_urls>"
],
"web_accessible_resources": [
{
"resources": [
"welcome.html",
"styles.css"
],
"matches": [
"<all_urls>"
]
}
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"extpay.js",
"content-script.js",
"content.js"
],
"css": [
"styles.css"
],
"run_at": "document_start"
},
{
"matches": [
"https://extensionpay.com/*"
],
"js": [
"extpay.js"
],
"run_at": "document_start"
}
]
}