Levantr

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

Cos'è Levantr?

Levantr è un'estensione di Chrome sviluppata da https://levantr.com, e la sua funzione principale è "An extension to send links from the browser to your Levantr account".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Levantr

Scarica i file di estensione Levantr in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Levantr Levantr
ID eldloofphpicjfjfbinpefldcnoonihc
URL Ufficiale https://chromewebstore.google.com/detail/levantr/eldloofphpicjfjfbinpefldcnoonihc
Descrizione An extension to send links from the browser to your Levantr account
Dimensione del File 5.96 MB
Conteggio Installazioni 36
Versione Corrente 0.0.1
Ultimo Aggiornamento 2022-09-15
Data di Pubblicazione 2022-09-15
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore https://levantr.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://levantr.com/
URL della Pagina di Aiuto https://levantr.com/contact-us/
URL della Pagina della Politica sulla Privacy https://travelpassero.com/privacy-policy
Lingue Supportate 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'"
    }
}