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", "description": "Turning the repositories into a grid view for GitHub", "version": "1.0.2", "manifest_version": 3, "name": "Grid View for GitHub", "permissions": [ "storage" ], "background": { "service_worker": "background.bundle.js" }, "icons": { "16": "GitHubGridView16.png", "32": "GitHubGridView32.png", "48": "GitHubGridView48.png", "64": "GitHubGridView64.png", "128": "GitHubGridView128.png" }, "action": { "default_popup": "index.html", "default_icon": "GitHubGridView32.png", "default_title": "Grid View for GitHub" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/github.com\/*" ], "js": [ "content-script.bundle.js" ] } ], "web_accessible_resources": [ { "matches": [ "<all_urls>" ], "resources": [ "**\/*", "*" ], "use_dynamic_url": true } ] }