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",
"name": "PIPElement",
"version": "0.2.5",
"description": "View highligthed elements (or page) Picture-In-Picture",
"manifest_version": 3,
"minimum_chrome_version": "116",
"permissions": [
"activeTab",
"contextMenus"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"ElementPicker.js",
"contentScript.js"
],
"css": [
"ElementPicker.css"
],
"all_frames": false
}
],
"web_accessible_resources": [
{
"resources": [
"PIPElement.css"
],
"matches": [
"<all_urls>"
]
}
],
"icons": {
"128": "assets\/icon128.png"
},
"action": {
"default_icon": {
"128": "assets\/icon128.png"
},
"default_title": "PIPElement"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Alt+P"
}
}
}
}