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": "Copy GitHub Issue Link", "description": "Copy the link to the current GitHub issue in org\/repo#issue format", "version": "1.0", "permissions": [ "activeTab" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/*\/issues\/*", "https:\/\/www.github.com\/*\/*\/issues\/*" ], "js": [ "content.js" ] } ] }