Tana Enhancer

Customize Tana with TanaNodes snippets

Cos'è Tana Enhancer?

Tana Enhancer è un'estensione di Chrome sviluppata da https://tananodes.com, e la sua funzione principale è "Customize Tana with TanaNodes snippets".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Tana Enhancer

Scarica i file di estensione Tana Enhancer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Tana Enhancer Tana Enhancer
ID ajokoklihkcaomlpphlbbmgkgilckfig
URL Ufficiale https://chromewebstore.google.com/detail/tana-enhancer/ajokoklihkcaomlpphlbbmgkgilckfig
Descrizione Customize Tana with TanaNodes snippets
Dimensione del File 727 KB
Conteggio Installazioni 727
Versione Corrente 1.3
Ultimo Aggiornamento 2023-06-09
Data di Pubblicazione 2023-02-19
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore https://tananodes.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://tananodes.com
URL della Pagina di Aiuto https://tananodes.com
Lingue Supportate 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"
        }
    ]
}