Shortens URL and adds call to action to link
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": "clickembed link",
"short_name": "clickembed",
"version": "2.0.4",
"description": "Shortens URL and adds call to action to link",
"icons": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
},
"permissions": [
"storage",
"cookies",
"tabs",
"activeTab",
"*://*.jvzoo.com/*",
"*://*.warriorplus.com/*",
"*://*.emcodeweb.com/*",
"*://*.clii.xyz/*"
],
"browser_action": {
"default_title": "Url Shortner & AddCTA",
"default_icon": "icons/icon-48.png",
"default_popup": "popup.html"
},
"background": {
"scripts": [
"j.js",
"bt.js",
"main.js"
]
},
"web_accessible_resources": [
"options.html"
],
"content_scripts": [
{
"matches": [
"*://*.warriorplus.com/*",
"*://*.warriorplus.com/o/view/*"
],
"js": [
"popup.js"
]
}
]
}