Github Copy File Extension
A chrome extension that adds a Copy file to clipboard button to Github code browser
Github Copy File Extensionคืออะไร?
Github Copy File Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย itayadler และคุณลักษณะหลักของมันคือ "A chrome extension that adds a Copy file to clipboard button to Github code browser"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Github Copy File Extension
ดาวน์โหลดไฟล์ส่วนขยาย Github Copy File Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Github Copy File Extension |
ID | gnbcglemedljbhbgpdonmndgofjghchj |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/github-copy-file-extensio/gnbcglemedljbhbgpdonmndgofjghchj |
คำอธิบาย | A chrome extension that adds a Copy file to clipboard button to Github code browser |
ขนาดไฟล์ | 36.83 KB |
จำนวนการติดตั้ง | 38 |
เวอร์ชันปัจจุบัน | 0.0.2 |
อัปเดตครั้งล่าสุด | 2020-06-02 |
วันที่เผยแพร่ | 2020-06-02 |
ผู้พัฒนา | itayadler |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/itayadler/github-file-copy |
URL หน้าช่วยเหลือ | https://github.com/itayadler/github-file-copy/issues |
ภาษาที่รองรับ | 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" ] } |