Levantr

An extension to send links from the browser to your Levantr account

Levantr là gì?

Levantr là một tiện ích mở rộng Chrome được phát triển bởi https://levantr.com, và tính năng chính của nó là "An extension to send links from the browser to your Levantr account".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Levantr 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

                        The Levantr chrome extension helps users to find ideas while browsing the web and easily add them to their Journey Board in the Levantr App. 

While surfing; just open the chrome extension, fill out the details and select the journey you want the idea added to, then hit save and you're finished!                    

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

Tên Levantr Levantr
ID eldloofphpicjfjfbinpefldcnoonihc
URL Chính Thức https://chromewebstore.google.com/detail/levantr/eldloofphpicjfjfbinpefldcnoonihc
Mô tả An extension to send links from the browser to your Levantr account
Kích Thước Tệp 5.96 MB
Số Lần Cài Đặt 36
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2022-09-15
Ngày Phát Hành 2022-09-15
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://levantr.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://levantr.com/
URL Trang Trợ Giúp https://levantr.com/contact-us/
URL Trang Chính Sách Bảo Mật https://travelpassero.com/privacy-policy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.0.1",
    "short_name": "Levantr",
    "name": "Levantr",
    "description": "An extension to send links from the browser to your Levantr account",
    "action": {
        "default_icon": "levantrFavicon-96.png",
        "default_title": "Levantr",
        "default_popup": "popup.html"
    },
    "icons": {
        "48": "levantrFavicon-48.png",
        "96": "levantrFavicon-96.png"
    },
    "background": {
        "service_worker": "background.bundle.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ]
        }
    ],
    "options_page": "options.html",
    "permissions": [
        "storage",
        "tabs"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'",
        "sandbox": "sandbox allow-scripts; script-src 'self' 'https:\/\/apis.google.com\/' 'https:\/\/www.gstatic.com\/' 'https:\/\/*.firebaseio.com' 'https:\/\/www.googleapis.com' 'https:\/\/ajax.googleapis.com'; object-src 'self'"
    }
}