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はitayadlerによって開発されたChromeの拡張機能で、その主な機能は「A chrome extension that adds a Copy file to clipboard button to Github code browser」です。
拡張機能のスクリーンショット
Github Copy File Extension拡張機能のCRXファイルをダウンロード
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 拡張機能の基本情報
| 名前 | |
| 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"
]
} | |