Copy Tabs
Creates a keyboard shortcut (Ctrl + Shift + C) which copies links for selected tabs
什麼是Copy Tabs?
Copy Tabs是由http://codingeverything.blogspot.com開發的Chrome擴展程式,該擴展的主要功能是“Creates a keyboard shortcut (Ctrl + Shift + C) which copies links for selected tabs”。
擴展截圖
下載Copy Tabs擴展crx文件
下載Copy Tabs擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Saving a large number of tabs can after a particularly fervent browsing session can sometimes be quite a hassle. Copy and pasting back and forth between your browser and text field. Now you can copy the web url and web page title as one single formatted link for every highlighted tab in the current window. In chrome, you can highlight multiple tabs the same multiple selection is typically handled, either by holding down control and selecting individual tabs or shift to select a range. Using the new keyboard shortcut, Ctrl + Shift + C, add all the links to your clipboard and paste them wherever you like with the standard paste operation. You can follow or fork the extension at GitHub https://github.com/KyleMit/ChromeCopyTabs All code is open source and protected by the MIT developer licence (c) 2013 Kyle Mitofsky
擴展基本資訊
名稱 | |
ID | efmfdbcopjfmgoefenohhlcplheclbeo |
官方網址 | https://chrome.google.com/webstore/detail/copy-tabs/efmfdbcopjfmgoefenohhlcplheclbeo |
簡介 | Creates a keyboard shortcut (Ctrl + Shift + C) which copies links for selected tabs |
檔案大小 | 61.43 KB |
安裝次數 | 29 |
目前版本 | 0.1 |
更新時間 | 2013-07-17 |
上架時間 | 2013-07-17 |
評分 | 1.40/5 共 5 次評分 |
開發者 | http://codingeverything.blogspot.com |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Copy Tabs", "version": "0.1", "description": "Creates a keyboard shortcut (Ctrl + Shift + C) which copies links for selected tabs", "icons": { "16": "Icons\/Logo16.png", "32": "Icons\/Logo32.png", "48": "Icons\/Logo48.png", "128": "Icons\/Logo128.png" }, "permissions": [ "tabs", "clipboardWrite", "clipboardRead" ], "background": { "persistent": false, "scripts": [ "background.js" ] }, "commands": { "copy-tabs": { "suggested_key": { "default": "Ctrl+Shift+C" }, "description": "Copy Selected Tab Links" } } } |