Inspect and view changes in Wikipedia links colorchanger 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": 2,
"name": "Wikipedia hyperlink colorchanger",
"version": "1.0",
"description": "Underline Wikipedia hyperlinks in different colors, according to their global relevance",
"icons": {},
"content_scripts": [
{
"matches": [
"*://*.wikipedia.org/*"
],
"js": [
"go.js"
]
}
],
"permissions": [
"https://query.wikidata.org/*",
"<all_urls>",
"activeTab"
],
"browser_specific_settings": {
"gecko": {
"id": "{74a6d063-cd5c-4ddc-a46e-928704bfa4ac}"
}
}
}