Tana Enhancer
Customize Tana with TanaNodes snippets
Tana Enhancerคืออะไร?
Tana Enhancer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://tananodes.com และคุณลักษณะหลักของมันคือ "Customize Tana with TanaNodes snippets"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tana Enhancer
ดาวน์โหลดไฟล์ส่วนขยาย Tana Enhancer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Tana Enhancer |
ID | ajokoklihkcaomlpphlbbmgkgilckfig |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/tana-enhancer/ajokoklihkcaomlpphlbbmgkgilckfig |
คำอธิบาย | Customize Tana with TanaNodes snippets |
ขนาดไฟล์ | 727 KB |
จำนวนการติดตั้ง | 727 |
เวอร์ชันปัจจุบัน | 1.3 |
อัปเดตครั้งล่าสุด | 2023-06-09 |
วันที่เผยแพร่ | 2023-02-19 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | https://tananodes.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://tananodes.com |
URL หน้าช่วยเหลือ | https://tananodes.com |
ภาษาที่รองรับ | 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" } ] } |