Inspect and view changes in SVG Screenshot 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
{
"manifest_version": 2,
"name": "SVG Screenshot",
"description": "Take scalable, semantic, accessible screenshots, in SVG format.",
"version": "0.11.6",
"permissions": [
"activeTab",
"<all_urls>",
"storage"
],
"icons": {
"128": "images/icon_128.png",
"256": "images/icon_256.png"
},
"web_accessible_resources": [
"src/content.js"
],
"browser_action": {
"default_popup": "src/popup.html",
"default_title": "Capture SVG screenshot",
"default_icon": {
"128": "images/icon_128.png",
"256": "images/icon_256.png"
}
},
"background": {
"scripts": [
"src/background.js"
]
},
"browser_specific_settings": {
"gecko": {
"id": "svg-screenshots@felixfbecker"
}
}
}