Listium Quick Add

Add to your lists from any web page

Listium Quick Addとは何ですか?

Listium Quick Addはhttps://listium.comによって開発されたChromeの拡張機能で、その主な機能は「Add to your lists from any web page」です。

拡張機能のスクリーンショット

screenshot

Listium Quick Add拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    }
}