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"입니다.

확장 프로그램 스크린샷

screenshot

Copy Tabs 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Copy Tabs Copy Tabs
ID efmfdbcopjfmgoefenohhlcplheclbeo
공식 URL 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"
        }
    }
}