github-code-viewer
A Chromium extension to view GitHub code faster and easier.
什么是github-code-viewer?
github-code-viewer是由xcv58开发的Chrome扩展程序,该扩展的主要功能是“A Chromium extension to view GitHub code faster and easier.”。
扩展截图
下载github-code-viewer扩展crx文件
下载github-code-viewer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
View GitHub code in VSCode.
扩展基本信息
名称 | github-code-viewer |
ID | ecddapgifccgblebfibdgkagfbdagjfn |
官方URL | https://chromewebstore.google.com/detail/github-code-viewer/ecddapgifccgblebfibdgkagfbdagjfn |
简介 | A Chromium extension to view GitHub code faster and easier. |
文件大小 | 19.39 KB |
安装次数 | 609 |
当前版本 | 0.0.1 |
更新时间 | 2021-02-10 |
上架时间 | 2021-02-10 |
评分 | 5.00/5 共2次评分 |
开发者 | xcv58 |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/febaoshan/edge-extensions-github-code-viewer |
帮助页面URL | https://github.com/febaoshan/edge-extensions-github-code-viewer/issues |
支持的语言 | 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" ] } } |