Tana Enhancer

Customize Tana with TanaNodes snippets

Apa itu Tana Enhancer?

Tana Enhancer adalah ekstensi Chrome yang dikembangkan oleh https://tananodes.com, dan fitur utamanya adalah "Customize Tana with TanaNodes snippets".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Tana Enhancer

Unduh file ekstensi Tana Enhancer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Tana Enhancer Tana Enhancer
ID ajokoklihkcaomlpphlbbmgkgilckfig
URL Resmi https://chromewebstore.google.com/detail/tana-enhancer/ajokoklihkcaomlpphlbbmgkgilckfig
Deskripsi Customize Tana with TanaNodes snippets
Ukuran File 727 KB
Jumlah Instalasi 727
Versi Saat Ini 1.3
Terakhir Diperbarui 2023-06-09
Tanggal Publikasi 2023-02-19
Penilaian 5.00/5 Total 3 Penilaian
Pengembang https://tananodes.com
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://tananodes.com
URL Halaman Bantuan https://tananodes.com
Bahasa yang Didukung 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"
        }
    ]
}