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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة سياسة الخصوصية 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"
    }
}