tabclip

Copy browser tabs to (or create them from) your clipboard.

什麼是tabclip?

tabclip是由Josh Dick開發的Chrome擴展程式,該擴展的主要功能是“Copy browser tabs to (or create them from) your clipboard.”。

擴展截圖

screenshot

下載tabclip擴展crx文件

下載tabclip擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        **About**

Tabclip allows you to copy browser tabs to (or create them from) your clipboard.

The "Copy" button, or keyboard shortcut CTRL+SHIFT+C by default, copies tab URLs to your clipboard.

The "Paste" button, or keyboard shortcut CTRL+SHIFT+V by default, attempts to find all URLs that appear in your clipboard, then opens each URL in a new browser tab.

That's it!

**Feedback**

If you have suggestions or bug reports for tabclip, I am much more likely to see your feedback if you leave it at tabclip's GitHub Issues page (https://github.com/joshdick/tabclip/issues) rather than on tabclip's Chrome Web Store page.

I'd like to keep this extension as simple and minimal as possible, so most feature requests are not likely to be honored.

**Attribution**

tabclip is heavily inspired by Vincent Paré's "Copy All Urls" Chrome extension. I created tabclip because I wanted a similar extension that looked and worked the same in both Chrome and Firefox. Tabclip was written from scratch and shares no code with the "Copy All Urls" Chrome extension.

tabclip's icon was made by Freepik from flaticon.com (https://www.flaticon.com/authors/freepik).                    

擴展基本資訊

名稱 tabclip tabclip
ID kdmfphcdeckocjmkmkgffgehadjhmkmc
官方網址 https://chromewebstore.google.com/detail/tabclip/kdmfphcdeckocjmkmkgffgehadjhmkmc
簡介 Copy browser tabs to (or create them from) your clipboard.
檔案大小 67.3 KB
安裝次數 80
目前版本 1.4
更新時間 2021-03-23
上架時間 2019-05-12
評分 5.00/5 共 1 次評分
開發者 Josh Dick
電子郵箱 [email protected]
付費類型 free
擴展官網 https://joshdick.github.io/tabclip
說明頁面URL https://github.com/joshdick/tabclip
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "tabclip",
    "description": "Copy browser tabs to (or create them from) your clipboard.",
    "version": "1.4",
    "author": "Josh Dick",
    "icons": {
        "16": "img\/tabclip_16.png",
        "32": "img\/tabclip_32.png",
        "48": "img\/tabclip_48.png",
        "128": "img\/tabclip_128.png"
    },
    "homepage_url": "https:\/\/joshdick.github.io\/tabclip",
    "browser_action": {
        "default_icon": "img\/tabclip_128.png",
        "default_popup": "popup.htm",
        "default_title": "tabclip"
    },
    "background": {
        "page": "background.htm"
    },
    "commands": {
        "copy-tabs": {
            "suggested_key": {
                "default": "Ctrl+Shift+C",
                "mac": "MacCtrl+Shift+C"
            },
            "description": "Copy tab(s) to the clipboard"
        },
        "paste-tabs": {
            "suggested_key": {
                "default": "Ctrl+Shift+V",
                "mac": "MacCtrl+Shift+V"
            },
            "description": "Paste tab(s) from the clipboard"
        }
    },
    "permissions": [
        "clipboardRead",
        "clipboardWrite",
        "notifications",
        "storage",
        "tabs"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'"
}