Levantr

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

Levantrคืออะไร?

Levantr เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://levantr.com และคุณลักษณะหลักของมันคือ "An extension to send links from the browser to your Levantr account"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Levantr

ดาวน์โหลดไฟล์ส่วนขยาย Levantr ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Levantr Levantr
ID eldloofphpicjfjfbinpefldcnoonihc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/levantr/eldloofphpicjfjfbinpefldcnoonihc
คำอธิบาย An extension to send links from the browser to your Levantr account
ขนาดไฟล์ 5.96 MB
จำนวนการติดตั้ง 36
เวอร์ชันปัจจุบัน 0.0.1
อัปเดตครั้งล่าสุด 2022-09-15
วันที่เผยแพร่ 2022-09-15
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา https://levantr.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://levantr.com/
URL หน้าช่วยเหลือ https://levantr.com/contact-us/
URL หน้านโยบายความเป็นส่วนตัว https://travelpassero.com/privacy-policy
ภาษาที่รองรับ 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'"
    }
}