We bring life into your links. Linksafe is a revolution in how people use web to achieve results.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "LinkSafe",
"version": "1.3.3",
"description": "We bring life into your links. Linksafe is a revolution in how people use web to achieve results.",
"manifest_version": 3,
"icons": {
"16": "assets/images/icons/16.png",
"32": "assets/images/icons/32.png",
"48": "assets/images/icons/48.png",
"128": "assets/images/icons/128.png"
},
"action": {
"default_icon": {
"16": "assets/images/icons/16.png",
"32": "assets/images/icons/32.png",
"48": "assets/images/icons/48.png",
"128": "assets/images/icons/128.png"
},
"default_title": "LinkSafe",
"default_popup": "html/popup.html"
},
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage",
"activeTab",
"tabs",
"contextMenus",
"bookmarks"
],
"content_scripts": [
{
"matches": [
"*://app.linksafe.io/*"
],
"js": [
"assets/js/injectExtID.js"
]
},
{
"matches": [
"*://*.google.com/search?q=*"
],
"js": [
"assets/js/google.js"
]
},
{
"matches": [
"<all_urls>"
],
"js": [
"assets/js/notifier.js"
],
"run_at": "document_end"
}
],
"externally_connectable": {
"matches": [
"*://app.linksafe.io/*"
]
},
"web_accessible_resources": [
{
"resources": [
"assets/images/icons/128.png"
],
"matches": [
"<all_urls>"
]
},
{
"resources": [
"assets/css/google.css",
"assets/css/google-dark.css"
],
"matches": [
"*://*.google.com/*"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}