Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "SnapCode Pro",
"version": "1.0.1",
"description": "Capture the Design, Extract the Code. High-fidelity HTML\/CSS extraction and intelligent full-page screenshots for modern developers.",
"permissions": [
"activeTab",
"scripting",
"storage",
"downloads",
"tabs"
],
"action": {
"default_title": "SnapCode Pro",
"default_popup": "popup.html",
"default_icon": {
"128": "icons\/icon128.png"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"styles.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"styles.css"
],
"matches": [
"<all_urls>"
]
}
],
"icons": {
"128": "icons\/icon128.png"
}
}