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": "POPElement",
"version": "0.1.6",
"description": "Pop out the current page (or an element) into a separate window.",
"manifest_version": 3,
"permissions": [
"activeTab",
"contextMenus",
"scripting"
],
"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": [
"POPElement.css",
"assets\/icon128_popped.png",
"assets\/icon128_on.png"
],
"matches": [
"<all_urls>"
]
}
],
"icons": {
"128": "assets\/icon128.png"
},
"action": {
"default_icon": {
"128": "assets\/icon128.png"
},
"default_title": "POPElement"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Alt+O"
}
}
}
}