Listium Quick Add

Add to your lists from any web page

Listium Quick Add क्या है?

Listium Quick Add https://listium.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add to your lists from any web page"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Listium Quick Add एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    }
}