Tana Enhancer
Customize Tana with TanaNodes snippets
What is Tana Enhancer?
Tana Enhancer is a Chrome extension developed by https://tananodes.com, and its main feature is "Customize Tana with TanaNodes snippets".
Extension Screenshots
Download Tana Enhancer Extension CRX File
Download Tana Enhancer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Tana Enhancer |
ID | ajokoklihkcaomlpphlbbmgkgilckfig |
Official URL | https://chromewebstore.google.com/detail/tana-enhancer/ajokoklihkcaomlpphlbbmgkgilckfig |
Description | Customize Tana with TanaNodes snippets |
File Size | 727 KB |
Installation Count | 727 |
Current Version | 1.3 |
Last Updated | 2023-06-09 |
Publish Date | 2023-02-19 |
Rating | 5.00/5 Total 3 Ratings |
Developer | https://tananodes.com |
[email protected] | |
Payment Type | free |
Extension Website | https://tananodes.com |
Help Page URL | https://tananodes.com |
Supported Languages | 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" } ] } |