Levantr

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

Co je Levantr?

Levantr je rozšíření Chrome vyvinuté https://levantr.com, a jeho hlavní funkcí je „An extension to send links from the browser to your Levantr account“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Levantr

Stáhněte si soubory rozšíření Levantr ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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!                    

Základní Informace o Rozšíření

Název Levantr Levantr
ID eldloofphpicjfjfbinpefldcnoonihc
Oficiální URL https://chromewebstore.google.com/detail/levantr/eldloofphpicjfjfbinpefldcnoonihc
Popis An extension to send links from the browser to your Levantr account
Velikost souboru 5.96 MB
Počet instalací 36
Aktuální Verze 0.0.1
Poslední Aktualizace 2022-09-15
Datum Vydání 2022-09-15
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář https://levantr.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://levantr.com/
URL Stránky Nápovědy https://levantr.com/contact-us/
URL Stránky Zásad Ochrany Soukromí https://travelpassero.com/privacy-policy
Podporované Jazyky 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'"
    }
}