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": "Types Checker", "devtools_page": "devtools.html", "description": "Check if packages has Typescript types", "icons": { "16": "icons\/icon_dark_16.png", "48": "icons\/icon_dark_48.png", "128": "icons\/icon_dark_128.png" }, "web_accessible_resources": [ "inject-script.js" ], "version": "1.0", "author": "Daniel Derevjanik <[email protected]>", "offline_enabled": true, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "content.js" ], "runt_at": "document_idle", "all_frames": true } ], "browser_action": { "default_icon": { "16": "icons\/icon_dark_16.png", "48": "icons\/icon_dark_48.png", "128": "icons\/icon_dark_128.png" } }, "background": { "persistant": false, "scripts": [ "background.js" ] }, "permissions": [ "tabs", "activeTab", "windows", "storage", "webRequest", "<all_urls>" ] }