Tana Enhancer

Customize Tana with TanaNodes snippets

Co je Tana Enhancer?

Tana Enhancer je rozšíření Chrome vyvinuté https://tananodes.com, a jeho hlavní funkcí je „Customize Tana with TanaNodes snippets“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Tana Enhancer

Stáhněte si soubory rozšíření Tana Enhancer 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í

                        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.                    

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

Název Tana Enhancer Tana Enhancer
ID ajokoklihkcaomlpphlbbmgkgilckfig
Oficiální URL https://chromewebstore.google.com/detail/tana-enhancer/ajokoklihkcaomlpphlbbmgkgilckfig
Popis Customize Tana with TanaNodes snippets
Velikost souboru 727 KB
Počet instalací 727
Aktuální Verze 1.3
Poslední Aktualizace 2023-06-09
Datum Vydání 2023-02-19
Hodnocení 5.00/5 Celkem 3 Hodnocení
Vývojář https://tananodes.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://tananodes.com
URL Stránky Nápovědy https://tananodes.com
Podporované Jazyky 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"
        }
    ]
}