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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | 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" ] } |