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": "Github Issue Template Labels", "short_name": "GITL", "description": "Create specific issues based on the label you pick.", "version": "0.5.0", "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/*" ], "js": [ "content.js" ] } ], "background": { "scripts": [ "background.js" ] }, "icons": { "16": "logo\/logo-16.png", "32": "logo\/logo-32.png", "48": "logo\/logo-48.png", "128": "logo\/logo-128.png" }, "options_ui": { "page": "options.html", "chrome_style": true }, "permissions": [ "storage" ] }