Tana Enhancer
Customize Tana with TanaNodes snippets
Co to jest Tana Enhancer?
Tana Enhancer to rozszerzenie Chrome opracowane przez https://tananodes.com, a jego główną funkcją jest „Customize Tana with TanaNodes snippets”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Tana Enhancer
Pobierz pliki rozszerzeń Tana Enhancer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Tana Enhancer |
ID | ajokoklihkcaomlpphlbbmgkgilckfig |
Oficjalny URL | https://chromewebstore.google.com/detail/tana-enhancer/ajokoklihkcaomlpphlbbmgkgilckfig |
Opis | Customize Tana with TanaNodes snippets |
Rozmiar pliku | 727 KB |
Liczba instalacji | 727 |
Aktualna Wersja | 1.3 |
Ostatnia Aktualizacja | 2023-06-09 |
Data Publikacji | 2023-02-19 |
Ocena | 5.00/5 Łącznie 3 Oceny |
Deweloper | https://tananodes.com |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://tananodes.com |
Adres URL Strony Pomocy | https://tananodes.com |
Obsługiwane Języki | 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" } ] } |