List Builder for Twitter

Quickly build Twitter lists from any timeline view.

Что такое List Builder for Twitter?

List Builder for Twitter - это расширение Chrome, разработанное https://www.electoralhq.com, и его основная функция - "Quickly build Twitter lists from any timeline view.".

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

screenshot

Скачать файл CRX расширения List Builder for Twitter

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

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

                        Quickly build Twitter lists with List Builder.  Visible from any timeline view, you can select individual tweets or all on the screen and include the users into one of your lists.  

Great for events and conferences where you want to build list of people tweeting a hashtag to follow them after the event.

More Twitter List tools @ https://www.electoralhq.com                    

Основная информация о расширении

Название List Builder for Twitter List Builder for Twitter
ID angdkjndobobaegbnhjaooedegkbibae
Официальный URL https://chromewebstore.google.com/detail/list-builder-for-twitter/angdkjndobobaegbnhjaooedegkbibae
Описание Quickly build Twitter lists from any timeline view.
Размер файла 50.12 KB
Количество установок 803
Текущая Версия 0.4
Последнее Обновление 2017-04-03
Дата публикации 2017-04-03
Рейтинг 2.70/5 Всего 10 оценок
Разработчик https://www.electoralhq.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.electoralhq.com
URL страницы помощи https://github.com/ryanwi/listbuilder-ext/issues
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "List Builder for Twitter",
    "description": "Quickly build Twitter lists from any timeline view.",
    "version": "0.4",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "declarativeContent"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "page_action": {
        "default_icon": "images\/icon16.png",
        "default_title": "List Builder",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "js": [
                "js\/jquery-2.1.0.min.js",
                "js\/mutation-summary.js",
                "js\/main.js"
            ],
            "css": [
                "css\/main.css"
            ]
        }
    ]
}