Turns all Wikipedia sections into links. To copy a link, right-click and select 'Copy Link Address'
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"description": "Turns all Wikipedia sections into links. To copy a link, right-click and select 'Copy Link Address'",
"manifest_version": 2,
"name": "Wikipedia Links",
"short_name": "WP Links",
"version": "1.3",
"icons": {
"48": "icon48.png",
"96": "icon96.png",
"128": "icon128.png"
},
"content_scripts": [
{
"matches": [
"*://*.wikipedia.org/*"
],
"js": [
"content.js"
]
}
]
}