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": 2, "name": "__MSG_extName__", "version": "1.0.0", "description": "You can write a note in a GitHub issue that only you can see", "default_locale": "en", "permissions": [ "https:\/\/github.com\/*", "storage" ], "icons": { "16": "icons\/logo-16.png", "48": "icons\/logo-48.png", "128": "icons\/logo-128.png" }, "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/*\/issues", "https:\/\/github.com\/*\/*\/issues\/*", "https:\/\/github.com\/*\/*\/pulls", "https:\/\/github.com\/*\/*\/pull\/*" ], "run_at": "document_idle", "js": [ "js\/content-script.js" ] } ], "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/apis.google.com; object-src 'self'" }