Sense App

Get insights of your tab you are currently on

Что такое Sense App?

Sense App - это расширение Chrome, разработанное senseai app, и его основная функция - "Get insights of your tab you are currently on".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Sense App

Скачайте файлы расширений Sense App в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Sense is an AI-driven hub, which automatically keeps files, documents, tasks, links, meetings, conversations, people etc. interrelated and organized; and defines what is the most important for the given moment of time.
Sense Chrome Extension allows you to get all related work assets and discussions for any tab you are currently on.
Right now the first version of Sense is available for anyone who wants to test it. Send us a request on [email protected] and we will invite you to the future of work!                    

Основная информация о расширении

Название Sense App Sense App
ID kgbilbidemojaokjmfdlallffhhbbmpi
Официальный URL https://chromewebstore.google.com/detail/sense-app/kgbilbidemojaokjmfdlallffhhbbmpi
Описание Get insights of your tab you are currently on
Размер файла 860 KB
Количество установок 105
Текущая Версия 1.3.2
Последнее Обновление 2022-06-25
Дата публикации 2022-04-26
Рейтинг 5.00/5 Всего 1 оценок
Разработчик senseai app
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://senseai.online
URL страницы помощи https://www.senseapp.ai
URL страницы политики конфиденциальности https://www.senseapp.ai/privacy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Sense App ",
    "description": "Get insights of your tab you are currently on",
    "version": "1.3.2",
    "manifest_version": 3,
    "action": {
        "default_title": "Sense app"
    },
    "externally_connectable": {
        "matches": [
            "https:\/\/senseai.online\/*"
        ]
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "activeTab",
        "tabs"
    ],
    "host_permissions": [
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "\/icons\/icon_extension_16px.png",
        "32": "\/icons\/icon_extension_32px.png",
        "48": "\/icons\/icon_extension_48px.png",
        "128": "\/icons\/icon_extension_128px.png"
    }
}