Listium Quick Add

Add to your lists from any web page

What is Listium Quick Add?

Listium Quick Add is a Chrome extension developed by https://listium.com, and its main feature is "Add to your lists from any web page".

Extension Screenshots

screenshot

Download Listium Quick Add Extension CRX File

Download Listium Quick Add extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Listium Quick Add Listium Quick Add
ID lbnmdmabhfcialfjcphdpchmofihiffn
Official URL https://chromewebstore.google.com/detail/listium-quick-add/lbnmdmabhfcialfjcphdpchmofihiffn
Description Add to your lists from any web page
File Size 691 KB
Installation Count 214
Current Version 0.5.4
Last Updated 2021-11-30
Publish Date 2017-09-17
Rating 5.00/5 Total 4 Ratings
Developer https://listium.com
Email [email protected]
Payment Type free
Privacy Policy Page URL https://listium.com/privacy
Supported Languages 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"
    }
}