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'"
    }
}