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": "PicSee URL Shortener & QR Codes", "version": "1.3.3", "description": "Quickly shorten URLs and generate QR Codes.", "permissions": [ "storage", "activeTab", "tabs", "scripting", "clipboardRead", "clipboardWrite" ], "action": { "default_popup": "popup.html" }, "options_page": "options.html", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "notification.js", "content.js" ] } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "host_permissions": [ "https:\/\/picsee.io\/*", "https:\/\/api.pics.ee\/*" ] }