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", "name": "Octotree - GitHub code tree", "version": "8.0.1", "description": "GitHub on steroids", "homepage_url": "https:\/\/www.octotree.io", "author": "Team Octotree", "manifest_version": 3, "minimum_chrome_version": "88", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "action": { "default_icon": "icons\/icon128.png", "browser_style": true }, "permissions": [ "storage", "contextMenus", "activeTab", "scripting" ], "host_permissions": [ "https:\/\/api.github.com\/*", "https:\/\/www.octotree.io\/*" ], "optional_host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "web_accessible_resources": [ { "resources": [ "*.woff2", "*.png", "*.gif", "*.svg" ], "matches": [ "*:\/\/*\/*" ] } ], "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/github.com\/*" ], "js": [ "content.js" ], "css": [ "content.css" ] } ] }