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": "URL Shortener by Recut", "version": "1.2", "description": "Free URL shortener to quickly shorten links with a single click. Simple and easy to use link shortener.", "permissions": [ "activeTab", "storage", "contextMenus", "commands" ], "host_permissions": [ "https:\/\/recut.in\/*", "https:\/\/app.recut.in\/api\/*" ], "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "content.js", "locale.js" ] } ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "commands": { "open_popup": { "suggested_key": { "default": "Ctrl+Q", "mac": "Command+Q" }, "description": "Open the extension's Window" } }, "web_accessible_resources": [ { "resources": [ "interlay.html" ], "matches": [ "<all_urls>" ] } ] }