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": "Clipboard Monkey - Easy Clipboard Monitor and Manager", "version": "1.0", "description": "Save and manage your clipboard history with ease. Supports text and images.", "author": "ExtensionMonkey.de", "permissions": [ "clipboardRead", "clipboardWrite", "storage", "activeTab", "contextMenus" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "content.js" ], "run_at": "document_start" } ], "action": { "default_popup": "popup.html", "default_icon": { "16": "Icons\/icon.png", "48": "Icons\/icon.png", "128": "Icons\/icon.png" } }, "icons": { "16": "Icons\/icon.png", "48": "Icons\/icon.png", "128": "Icons\/icon.png" } }