Listium Quick Add

Add to your lists from any web page

Listium Quick Add là gì?

Listium Quick Add là một tiện ích mở rộng Chrome được phát triển bởi https://listium.com, và tính năng chính của nó là "Add to your lists from any web page".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Listium Quick Add

Tải xuống các tệp mở rộng Listium Quick Add dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Listium Quick Add Listium Quick Add
ID lbnmdmabhfcialfjcphdpchmofihiffn
URL Chính Thức https://chromewebstore.google.com/detail/listium-quick-add/lbnmdmabhfcialfjcphdpchmofihiffn
Mô tả Add to your lists from any web page
Kích Thước Tệp 691 KB
Số Lần Cài Đặt 214
Phiên Bản Hiện Tại 0.5.4
Cập Nhật Lần Cuối 2021-11-30
Ngày Phát Hành 2017-09-17
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển https://listium.com
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://listium.com/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}