TabLinkList

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

Что такое TabLinkList?

TabLinkList - это расширение Chrome, разработанное https://home.u03.itscom.net/skyblue, и его основная функция - "This extension makes a list of title and URL from selected tabs.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения TabLinkList

Скачайте файлы расширений TabLinkList в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        これは、現在開いているタブの一覧の中から選択されたタブのタイトルと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
}