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 issue point counter", "description": "A chrome extensions for counting Github issue point\/estimate with a flexible options and customizations.", "version": "0.1.0", "manifest_version": 3, "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/*.github.com\/*" ], "js": [ "injected.js" ], "css": [ "injected.css" ] } ], "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "action": { "default_popup": "popup.html", "default_icon": { "32": "assets\/images\/icon32.png", "128": "assets\/images\/icon144.png" } }, "icons": { "32": "assets\/images\/icon32.png", "128": "assets\/images\/icon144.png" } }