Tab Copy
Copy all tabs to clipboard. No bells and whistles.
Tab Copyとは何ですか?
Tab CopyはReeceによって開発されたChromeの拡張機能で、その主な機能は「Copy all tabs to clipboard. No bells and whistles.」です。
拡張機能のスクリーンショット
Tab Copy拡張機能のCRXファイルをダウンロード
Tab Copy拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Copies the tabs that are open in the window to the clipboard 拡張機能の基本情報
| 名前 | |
| ID | lmnpchdgonnfapjelemnfafmgkndeefc |
| 公式URL | https://chromewebstore.google.com/detail/tab-copy/lmnpchdgonnfapjelemnfafmgkndeefc |
| 説明 | Copy all tabs to clipboard. No bells and whistles. |
| ファイルサイズ | 10.02 KB |
| インストール数 | 151 |
| 現在のバージョン | 1.0 |
| 最終更新日 | 2019-11-19 |
| 公開日 | 2019-11-19 |
| 開発者 | Reece |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Tab Copy",
"version": "1.0",
"description": "Copy all tabs to clipboard. No bells and whistles.",
"permissions": [
"activeTab",
"clipboardWrite",
"tabs"
],
"manifest_version": 2,
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_title": "Copy to clipboard."
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+E"
}
}
}
} | |