Levantr

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

O que é Levantr?

Levantr é uma extensão do Chrome desenvolvida por https://levantr.com, e sua principal característica é "An extension to send links from the browser to your Levantr account".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Levantr

Baixe arquivos de extensão Levantr no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome Levantr Levantr
ID eldloofphpicjfjfbinpefldcnoonihc
URL Oficial https://chromewebstore.google.com/detail/levantr/eldloofphpicjfjfbinpefldcnoonihc
Descrição An extension to send links from the browser to your Levantr account
Tamanho do Arquivo 5.96 MB
Contagem de Instalações 36
Versão Atual 0.0.1
Última Atualização 2022-09-15
Data de Publicação 2022-09-15
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor https://levantr.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://levantr.com/
URL da Página de Ajuda https://levantr.com/contact-us/
URL da Página de Política de Privacidade https://travelpassero.com/privacy-policy
Idiomas Suportados 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'"
    }
}