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 Story Points", "description": "Chrome extension to add story points to GitHub projects", "short_name": "GitHub Story Points", "version": "0.2.9", "author": "Eric Boucher", "homepage_url": "https:\/\/github.com\/oviohub\/github-story-points", "icons": { "16": "assets\/images\/icon.png", "48": "assets\/images\/icon.png", "128": "assets\/images\/icon.png" }, "permissions": [ "https:\/\/github.com\/*", "contextMenus", "activeTab" ], "optional_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "dist\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/*\/projects\/*" ], "js": [ "dist\/story-points.js" ] } ] }