TabLinkList

This extension makes a list of title and URL from selected tabs.

TabLinkList란 무엇입니까?

TabLinkList은(는) https://home.u03.itscom.net/skyblue에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension makes a list of title and URL from selected tabs."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        これは、現在開いているタブの一覧の中から選択されたタブのタイトルとURLをクリップボードにコピーできる拡張機能です。


This is a Google Chrome extension that makes a list of title and URL from selected tabs.
Then you can copy the list to clipboard.

source code is available at http://github.com/skybluefactory/TabLinkList

Copied text sample is following.
---(e.g.)---
YouTube
http://www.youtube.com/

Google
https://www.google.co.jp/

Yahoo! JAPAN
http://www.yahoo.co.jp/                    

확장 프로그램 기본 정보

이름 TabLinkList TabLinkList
ID dimkgicbconccdphlpgonbfmdnlkoaim
공식 URL https://chromewebstore.google.com/detail/tablinklist/dimkgicbconccdphlpgonbfmdnlkoaim
설명 This extension makes a list of title and URL from selected tabs.
파일 크기 19.6 KB
설치 횟수 76
현재 버전 0.6.3
최근 업데이트 2013-05-27
출시 날짜 2013-05-27
개발자 https://home.u03.itscom.net/skyblue
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/skybluefactory/TabLinkList
도움말 페이지 URL https://github.com/skybluefactory/TabLinkList
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TabLinkList",
    "description": "This extension makes a list of title and URL from selected tabs.",
    "version": "0.6.3",
    "permissions": [
        "tabs",
        "contextMenus",
        "clipboardWrite"
    ],
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon48.png",
        "default_title": "TabLinkList",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "manifest_version": 2
}