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": "Provides a optional overlay, and context menu for browser text selections and quickly open links in background.", "homepage_url": "https:\/\/github.com\/jrie\/textcompanion", "manifest_version": 3, "name": "TextCompanion", "version": "0.2.3", "permissions": [ "storage", "activeTab", "contextMenus" ], "host_permissions": [ "<all_urls>" ], "options_ui": { "page": "page_settings.html", "browser_style": false }, "icons": { "16": "icons\/tc_16x16.png", "48": "icons\/tc_48x48.png", "64": "icons\/tc_64x64.png", "128": "icons\/tc_128x128.png" }, "background": { "service_worker": "textcompanion_bg.js", "all_frames": true }, "web_accessible_resources": [ { "resources": [ "\/img\/*", "textcompanion.css", "textcompanion_chrome.css" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "textcompanion.js" ], "css": [ "textcompanion.css", "textcompanion_chrome.css" ], "run_at": "document_idle", "all_frames": true } ] }