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": "Github Issue Quick Copy", "description": "Quickly copy Github issue titles in a fancy hyperlinked format so that they can easily be shared in Slack, Teams, documents, etc.", "version": "0.3", "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "permissions": [ "clipboardWrite" ], "content_scripts": [ { "js": [ "src\/content-script.js" ], "matches": [ "https:\/\/github.com\/*\/issues*", "https:\/\/github.com\/*\/pull*", "https:\/\/github.com\/notifications*" ], "run_at": "document_idle" } ] }