github-code-viewer
A Chromium extension to view GitHub code faster and easier.
What is github-code-viewer?
github-code-viewer is a Chrome extension developed by xcv58, and its main feature is "A Chromium extension to view GitHub code faster and easier.".
Extension Screenshots
Download github-code-viewer Extension CRX File
Download github-code-viewer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
View GitHub code in VSCode.
Extension Basic Information
Name | github-code-viewer |
ID | ecddapgifccgblebfibdgkagfbdagjfn |
Official URL | https://chromewebstore.google.com/detail/github-code-viewer/ecddapgifccgblebfibdgkagfbdagjfn |
Description | A Chromium extension to view GitHub code faster and easier. |
File Size | 19.39 KB |
Installation Count | 609 |
Current Version | 0.0.1 |
Last Updated | 2021-02-10 |
Publish Date | 2021-02-10 |
Rating | 5.00/5 Total 2 Ratings |
Developer | xcv58 |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/febaoshan/edge-extensions-github-code-viewer |
Help Page URL | https://github.com/febaoshan/edge-extensions-github-code-viewer/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "github-code-viewer", "version": "0.0.1", "manifest_version": 2, "description": "A Chromium extension to view GitHub code faster and easier.", "icons": { "16": "icons\/logo16x16.png", "32": "icons\/logo32x32.png", "48": "icons\/logo48x48.png", "128": "icons\/logo128x128.png" }, "page_action": { "default_popup": "popup\/popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "src\/background.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ "src\/background.js" ], "homepage_url": "https:\/\/github.com\/febaoshan\/edge-extensions-github-code-viewer", "permissions": [ "contextMenus" ], "background": { "scripts": [ "src\/background.js" ] } } |