Levantr

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

Was ist Levantr?

Levantr ist eine Chrome-Erweiterung, die von https://levantr.com entwickelt wurde, und ihr Hauptmerkmal ist "An extension to send links from the browser to your Levantr account".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Levantr-Erweiterungs-CRX-Datei herunterladen

Laden Sie Levantr-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Levantr Levantr
ID eldloofphpicjfjfbinpefldcnoonihc
Offizielle URL https://chromewebstore.google.com/detail/levantr/eldloofphpicjfjfbinpefldcnoonihc
Beschreibung An extension to send links from the browser to your Levantr account
Dateigröße 5.96 MB
Installationsanzahl 36
Aktuelle Version 0.0.1
Letztes Update 2022-09-15
Veröffentlichungsdatum 2022-09-15
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler https://levantr.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://levantr.com/
Hilfeseite URL https://levantr.com/contact-us/
URL der Datenschutzrichtlinien-Seite https://travelpassero.com/privacy-policy
Unterstützte Sprachen 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'"
    }
}