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": "Web Clipper",
"version": "1.42.0",
"action": [],
"background": {
"service_worker": ".\/background.js"
},
"icons": {
"128": "icons\/icon.png"
},
"commands": {
"save-selection": {
"suggested_key": {
"default": "Alt+S"
},
"description": "Save selection"
}
},
"web_accessible_resources": [
{
"resources": [
"tool.html",
"tool.js",
"vendor.js"
],
"matches": [
"<all_urls>"
]
}
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
".\/content_script.js"
]
}
],
"host_permissions": [
"https:\/\/api.clipper.website\/*",
"https:\/\/resource.clipper.website\/*"
],
"optional_host_permissions": [
"https:\/\/*\/*",
"http:\/\/*\/*",
"<all_urls>"
],
"optional_permissions": [
"cookies"
],
"permissions": [
"activeTab",
"storage",
"contextMenus",
"declarativeNetRequestWithHostAccess"
]
}