Reveal Anchor Tag URLs
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "Link Reveal",
"description": "Reveal Anchor Tag URLs",
"version": "1.0.2",
"manifest_version": 3,
"permissions": [
"activeTab"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"all_frames": false
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/url-16.png",
"32": "images/url-32.png",
"48": "images/url-48.png",
"128": "images/url-128.png",
"512": "images/url-512.png"
}
},
"icons": {
"16": "images/url-16.png",
"32": "images/url-32.png",
"48": "images/url-48.png",
"128": "images/url-128.png",
"512": "images/url-512.png"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}