Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Github Html Preview", "description": "Instantly preview HTML files on GitHub with our Chrome extension. One-click preview and easy access!", "version": "4.0", "manifest_version": 3, "permissions": [ "storage", "scripting", "contextMenus" ], "host_permissions": [ "https:\/\/github.com\/*", "https:\/\/raw.githubusercontent.com\/*", "https:\/\/github-html-preview.dohyeon5626.com\/*" ], "icons": { "16": "icon\/16.png", "32": "icon\/32.png", "48": "icon\/48.png", "128": "icon\/128.png" }, "web_accessible_resources": [ { "resources": [ "icon\/*.png" ], "matches": [ "<all_urls>" ] } ], "action": { "default_popup": "popup\/popup.html" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*.html" ], "js": [ "html-page-content.js" ] }, { "matches": [ "https:\/\/github-html-preview.dohyeon5626.com\/*" ], "js": [ "preview-page-content.js" ] } ], "commands": { "preview": { "suggested_key": { "default": "Ctrl+Shift+P", "mac": "Command+Shift+P" }, "description": "Preview Html" } } }