Inspect and view changes in Wikipedia+ 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
{
"manifest_version": 3,
"name": "Wikipedia+",
"description": "Improves the aesthetics of Wikipedia, with a focus on usability and customisability.",
"version": "0.1",
"permissions": [
"storage",
"scripting",
"activeTab",
"webRequest"
],
"web_accessible_resources": [
{
"matches": [
"https://*.wikipedia.org/*"
],
"resources": [
"wikistyle.css"
]
}
],
"action": {
"default_popup": "popup.html",
"default_icon": "wikiplus.png"
},
"content_scripts": [
{
"matches": [
"https://*.wikipedia.org/*"
],
"js": [
"wikiscript.js"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}