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": "pikka: Web Asset Picker",
"version": "1.1.4",
"description": "Easily pick, grab, and extract assets from any webpage.",
"permissions": [
"activeTab",
"scripting",
"storage"
],
"host_permissions": [
"<all_urls>"
],
"short_name": "Pikka",
"icons": {
"16": "icons\/bg-icon.png",
"48": "icons\/icon.png",
"128": "icons\/icon.png"
},
"action": {
"default_popup": "popup.html",
"default_title": "pikka: Web Asset Picker"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"content-style.css"
]
}
],
"background": {
"service_worker": "background.js"
}
}