Tana Enhancer
Customize Tana with TanaNodes snippets
Tana Enhancer là gì?
Tana Enhancer là một tiện ích mở rộng Chrome được phát triển bởi https://tananodes.com, và tính năng chính của nó là "Customize Tana with TanaNodes snippets".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Tana Enhancer
Tải xuống các tệp mở rộng Tana Enhancer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Tana Enhancer |
ID | ajokoklihkcaomlpphlbbmgkgilckfig |
URL Chính Thức | https://chromewebstore.google.com/detail/tana-enhancer/ajokoklihkcaomlpphlbbmgkgilckfig |
Mô tả | Customize Tana with TanaNodes snippets |
Kích Thước Tệp | 727 KB |
Số Lần Cài Đặt | 727 |
Phiên Bản Hiện Tại | 1.3 |
Cập Nhật Lần Cuối | 2023-06-09 |
Ngày Phát Hành | 2023-02-19 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | https://tananodes.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://tananodes.com |
URL Trang Trợ Giúp | https://tananodes.com |
Ngôn Ngữ Được Hỗ Trợ | 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" } ] } |