Replace your target link with what you want
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": "URL Replacement",
"version": "1.1",
"options_page": "configuration.html",
"description": "Replace your target link with what you want",
"short_name": "URL Replacement",
"incognito": "split",
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"js/jquery-3.1.0.min.js"
]
}
],
"icons": {
"16": "img/icon_arrow3.png",
"128": "img/icon_arrow3.png"
},
"browser_action": {
"16": "img/icon_arrow3.png",
"default_icon": "img/icon_arrow3.png",
"default_title": "URL Replacement",
"default_popup": "popup.html"
},
"permissions": [
"contextMenus",
"tabs",
"storage",
"activeTab"
],
"background": {
"scripts": [
"js/content.js"
]
}
}