Github Copy File Extension
A chrome extension that adds a Copy file to clipboard button to Github code browser
Wat is Github Copy File Extension?
Github Copy File Extension is een Chrome-extensie ontwikkeld door itayadler, en de belangrijkste functie is "A chrome extension that adds a Copy file to clipboard button to Github code browser".
Extensie Screenshots
Download het CRX-bestand van de extensie Github Copy File Extension
Download Github Copy File Extension-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Github Copy File Extension |
ID | gnbcglemedljbhbgpdonmndgofjghchj |
Officiële URL | https://chromewebstore.google.com/detail/github-copy-file-extensio/gnbcglemedljbhbgpdonmndgofjghchj |
Beschrijving | A chrome extension that adds a Copy file to clipboard button to Github code browser |
Bestandsgrootte | 36.83 KB |
Aantal Installaties | 38 |
Huidige Versie | 0.0.2 |
Laatst Bijgewerkt | 2020-06-02 |
Publicatiedatum | 2020-06-02 |
Ontwikkelaar | itayadler |
Betalingswijze | free |
Extensiewebsite | https://github.com/itayadler/github-file-copy |
Help Pagina-URL | https://github.com/itayadler/github-file-copy/issues |
Ondersteunde Talen | 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" ] } |