Listium Quick Add

Add to your lists from any web page

Что такое Listium Quick Add?

Listium Quick Add - это расширение Chrome, разработанное https://listium.com, и его основная функция - "Add to your lists from any web page".

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

screenshot

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

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

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

                        This extension allows Listium users to quickly add new items to their lists without having to open Listium or leave the page they are on.

Note: you must be logged into Listium to use this extension. Sign up for an account at https://listium.com                    

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

Название Listium Quick Add Listium Quick Add
ID lbnmdmabhfcialfjcphdpchmofihiffn
Официальный URL https://chromewebstore.google.com/detail/listium-quick-add/lbnmdmabhfcialfjcphdpchmofihiffn
Описание Add to your lists from any web page
Размер файла 691 KB
Количество установок 214
Текущая Версия 0.5.4
Последнее Обновление 2021-11-30
Дата публикации 2017-09-17
Рейтинг 5.00/5 Всего 4 оценок
Разработчик https://listium.com
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://listium.com/privacy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Listium Quick Add",
    "description": "Add to your lists from any web page",
    "version": "0.5.4",
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+L"
            }
        }
    },
    "permissions": [
        "cookies",
        "https:\/\/listium.com\/",
        "storage"
    ],
    "content_security_policy": "script-src 'self' https:\/\/cdn.mxpnl.com; object-src 'self'",
    "icons": {
        "16": "icons\/icon.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/listium.com\/*"
            ],
            "js": [
                "notifier.js"
            ]
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icons\/icon.png",
        "default_popup": "popup.html"
    }
}