Removes most links from Wikipedia pages to prevent you from going down time consuming rabbit holes.
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": 2,
"name": "Wikipedia Without Links",
"version": "1",
"icons": {
"16": "WikipediaWithoutLinks16.png",
"48": "WikipediaWithoutLinks48.png",
"128": "WikipediaWithoutLinks.png"
},
"content_scripts": [
{
"matches": [
"https://en.wikipedia.org/wiki/*",
"http://en.wikipedia.org/wiki/*"
],
"js": [
"content.js"
]
}
]
}