Tana Enhancer

Customize Tana with TanaNodes snippets

Was ist Tana Enhancer?

Tana Enhancer ist eine Chrome-Erweiterung, die von https://tananodes.com entwickelt wurde, und ihr Hauptmerkmal ist "Customize Tana with TanaNodes snippets".

Erweiterungsscreenshots

screenshot

Tana Enhancer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Tana Enhancer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Tana Enhancer Tana Enhancer
ID ajokoklihkcaomlpphlbbmgkgilckfig
Offizielle URL https://chromewebstore.google.com/detail/tana-enhancer/ajokoklihkcaomlpphlbbmgkgilckfig
Beschreibung Customize Tana with TanaNodes snippets
Dateigröße 727 KB
Installationsanzahl 727
Aktuelle Version 1.3
Letztes Update 2023-06-09
Veröffentlichungsdatum 2023-02-19
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler https://tananodes.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://tananodes.com
Hilfeseite URL https://tananodes.com
Unterstützte Sprachen 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"
        }
    ]
}