Listium Quick Add

Add to your lists from any web page

Wat is Listium Quick Add?

Listium Quick Add is een Chrome-extensie ontwikkeld door https://listium.com, en de belangrijkste functie is "Add to your lists from any web page".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Listium Quick Add

Download Listium Quick Add-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Listium Quick Add Listium Quick Add
ID lbnmdmabhfcialfjcphdpchmofihiffn
Officiële URL https://chromewebstore.google.com/detail/listium-quick-add/lbnmdmabhfcialfjcphdpchmofihiffn
Beschrijving Add to your lists from any web page
Bestandsgrootte 691 KB
Aantal Installaties 214
Huidige Versie 0.5.4
Laatst Bijgewerkt 2021-11-30
Publicatiedatum 2017-09-17
Beoordeling 5.00/5 Totaal 4 Beoordelingen
Ontwikkelaar https://listium.com
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://listium.com/privacy
Ondersteunde Talen 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"
    }
}