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": "General Download Renamer", "version": "1.1.0", "description": "Automatically rename downloaded files based on user-defined patterns", "manifest_version": 3, "permissions": [ "downloads", "storage", "tabs" ], "background": { "service_worker": "background\/service-worker.js", "type": "module" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "content-scripts\/floating-icon.js" ], "css": [ "content-scripts\/floating-icon.css" ], "run_at": "document_idle" } ], "web_accessible_resources": [ { "resources": [ "icons\/*.png", "icons\/*.svg", "content-scripts\/floating-icon.css" ], "matches": [ "<all_urls>" ] } ], "action": { "default_icon": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } }, "options_page": "options\/options.html", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "privacy_practices": { "tabs": "The tabs permission is used solely to enable communication between the extension popup and content scripts for showing\/hiding the floating icon toggle. No tab data is collected, stored, or transmitted. This permission allows users to control the floating icon visibility across different tabs through the extension popup interface." } }