Github Copy File Extension
A chrome extension that adds a Copy file to clipboard button to Github code browser
Vad är Github Copy File Extension?
Github Copy File Extension är en Chrome-tillägg utvecklad av itayadler, och dess huvudfunktion är "A chrome extension that adds a Copy file to clipboard button to Github code browser".
Tilläggsskärmbilder
Ladda ner Github Copy File Extension-förlängningens CRX-fil
Ladda ner Github Copy File Extension-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | Github Copy File Extension |
ID | gnbcglemedljbhbgpdonmndgofjghchj |
Officiell webbadress | https://chromewebstore.google.com/detail/github-copy-file-extensio/gnbcglemedljbhbgpdonmndgofjghchj |
Beskrivning | A chrome extension that adds a Copy file to clipboard button to Github code browser |
Filstorlek | 36.83 KB |
Antal Installationer | 38 |
Aktuell Version | 0.0.2 |
Senast Uppdaterad | 2020-06-02 |
Publiceringsdatum | 2020-06-02 |
Utvecklare | itayadler |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/itayadler/github-file-copy |
Hjälpsida URL | https://github.com/itayadler/github-file-copy/issues |
Stödda Språk | 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" ] } |