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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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
อีเมล [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"
    }
}