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": "Github Downloads", "description": "Tells you how many downloads a GitHub release has", "version": "2.0", "manifest_version": 3, "permissions": [ "tabs" ], "icons": { "16": "icons\/icon-16.png", "32": "icons\/icon-32.png", "48": "icons\/icon-48.png", "64": "icons\/icon-64.png", "128": "icons\/icon-128.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/*" ], "js": [ "worker.js" ] } ], "externally_connectable": { "matches": [ "https:\/\/github.com\/*\/*" ] } }