Github Copy File Extension
A chrome extension that adds a Copy file to clipboard button to Github code browser
Github Copy File Extension là gì?
Github Copy File Extension là một tiện ích mở rộng Chrome được phát triển bởi itayadler, và tính năng chính của nó là "A chrome extension that adds a Copy file to clipboard button to Github code browser".
Ả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 Copy File Extension
Tải xuống các tệp mở rộng Github Copy File Extension 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
Sometimes you just want to copy code from Github's code viewer and don't want to click on the Raw button, and hit Ctrl+A and Ctrl+C to get the code from the new tab
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Github Copy File Extension |
ID | gnbcglemedljbhbgpdonmndgofjghchj |
URL Chính Thức | https://chromewebstore.google.com/detail/github-copy-file-extensio/gnbcglemedljbhbgpdonmndgofjghchj |
Mô tả | A chrome extension that adds a Copy file to clipboard button to Github code browser |
Kích Thước Tệp | 36.83 KB |
Số Lần Cài Đặt | 38 |
Phiên Bản Hiện Tại | 0.0.2 |
Cập Nhật Lần Cuối | 2020-06-02 |
Ngày Phát Hành | 2020-06-02 |
Nhà Phát Triển | itayadler |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/itayadler/github-file-copy |
URL Trang Trợ Giúp | https://github.com/itayadler/github-file-copy/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "A chrome extension that adds a Copy file to clipboard button to Github code browser", "version": "0.0.2", "name": "Github Copy File Extension", "manifest_version": 2, "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/www.github.com\/*", "https:\/\/github.com\/*" ], "run_at": "document_idle", "js": [ "contentscript.js" ] } ], "permissions": [ "webNavigation" ] } |