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": "Sharp Printer Remote Unlocker", "version": "1.0", "description": "A small browser extension that enables the \"Release Operation Lock Status (File\/Folder)\" button from remote access.", "permissions": [ "storage", "scripting", "tabs", "activeTab" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_icon": "icon.png" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "contentScript.js" ], "run_at": "document_idle" } ] }