Inspect and view changes in Death To _blank 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": "Death To _blank",
"version": "2.0.1",
"description": "Keeps links from opening new tabs by removing the _blank attribute",
"icons": {
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Death To _blank",
"default_icon": {
"16": "images/icon16.png",
"24": "images/icon24.png",
"32": "images/icon32.png"
}
},
"content_scripts": [
{
"run_at": "document_start",
"all_frames": true,
"matches": [
"http://*/*",
"https://*/*",
"ftp://*/*",
"file://*/*"
],
"js": [
"lib/jquery-3.2.1.min.js",
"lib/jquery.onmutate.min.js",
"lib/URI.min.js",
"content_script.js"
]
}
],
"options_page": "options.html",
"permissions": [
"storage"
],
"web_accessible_resources": [
{
"resources": [
"lib/jquery-3.2.1.min.map"
],
"matches": [
"<all_urls>"
]
}
]
}