github-code-viewer
A Chromium extension to view GitHub code faster and easier.
github-code-viewer là gì?
github-code-viewer là một tiện ích mở rộng Chrome được phát triển bởi xcv58, và tính năng chính của nó là "A Chromium extension to view GitHub code faster and easier.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng github-code-viewer
Tải xuống các tệp mở rộng github-code-viewer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
View GitHub code in VSCode.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | github-code-viewer |
ID | ecddapgifccgblebfibdgkagfbdagjfn |
URL Chính Thức | https://chromewebstore.google.com/detail/github-code-viewer/ecddapgifccgblebfibdgkagfbdagjfn |
Mô tả | A Chromium extension to view GitHub code faster and easier. |
Kích Thước Tệp | 19.39 KB |
Số Lần Cài Đặt | 609 |
Phiên Bản Hiện Tại | 0.0.1 |
Cập Nhật Lần Cuối | 2021-02-10 |
Ngày Phát Hành | 2021-02-10 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | xcv58 |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/febaoshan/edge-extensions-github-code-viewer |
URL Trang Trợ Giúp | https://github.com/febaoshan/edge-extensions-github-code-viewer/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } } |