Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "WebClip Element",
"version": "0.3.3",
"description": "Take a screenshot of highligthed element (or visible page)",
"manifest_version": 3,
"permissions": [
"activeTab",
"contextMenus"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"ElementPicker.js",
"contentScript.js"
],
"css": [
"ElementPicker.css"
],
"all_frames": false
}
],
"cross_origin_opener_policy": {
"value": "same-origin"
},
"icons": {
"16": "assets\/icon16.png",
"32": "assets\/icon32.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png"
},
"action": {
"default_icon": {
"16": "assets\/icon16.png",
"32": "assets\/icon32.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png"
},
"default_title": "WebClip Element"
}
}