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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        **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
공식 URL 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'"
}