Tana Enhancer

Customize Tana with TanaNodes snippets

Что такое Tana Enhancer?

Tana Enhancer - это расширение Chrome, разработанное https://tananodes.com, и его основная функция - "Customize Tana with TanaNodes snippets".

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

screenshot

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

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

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

                        Tana Enhancer is a Chrome extension designed to enhance the user interface (UI) of the Tana application. This extension injects CSS styles from the Tana Nodes repository to improve the overall look and feel of the application. With Tana Enhancer, users can enjoy an customized experience while using Tana.                    

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

Название Tana Enhancer Tana Enhancer
ID ajokoklihkcaomlpphlbbmgkgilckfig
Официальный URL https://chromewebstore.google.com/detail/tana-enhancer/ajokoklihkcaomlpphlbbmgkgilckfig
Описание Customize Tana with TanaNodes snippets
Размер файла 727 KB
Количество установок 727
Текущая Версия 1.3
Последнее Обновление 2023-06-09
Дата публикации 2023-02-19
Рейтинг 5.00/5 Всего 3 оценок
Разработчик https://tananodes.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://tananodes.com
URL страницы помощи https://tananodes.com
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Tana Enhancer",
    "description": "Customize Tana with TanaNodes snippets",
    "version": "1.3",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "tabs",
        "activeTab",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/app.tana.inc\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "css": [
                "styles\/styles.js"
            ],
            "matches": [
                "https:\/\/app.tana.inc\/*"
            ],
            "run_at": "document_start"
        }
    ]
}