Style my Tana
A Chrome extension to edit styles on app.tana.inc
Style my Tana là gì?
Style my Tana là một tiện ích mở rộng Chrome được phát triển bởi heychristopherrrrr, và tính năng chính của nó là "A Chrome extension to edit styles on app.tana.inc".
Ả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 Style my Tana
Tải xuống các tệp mở rộng Style my Tana 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
A simple extension for adjusting styles of key Tana elements so that you can achieve a more focused experience in the app. The extensions allows the following edits: – Edit the opacity of bullets – Edit the opacity of rulers underneath bullets – Edit the opacity and spacing of the template tag All this to give you a comfortable writing experience. The project is completely open and should you like to fork the project or suggest changes, head to https://github.com/hey-chris/style-my-tana.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Style my Tana |
ID | kpjphbffhnikclcdlgglafcaknmbcbnj |
URL Chính Thức | https://chromewebstore.google.com/detail/style-my-tana/kpjphbffhnikclcdlgglafcaknmbcbnj |
Mô tả | A Chrome extension to edit styles on app.tana.inc |
Kích Thước Tệp | 11.13 KB |
Số Lần Cài Đặt | 29 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2023-04-03 |
Ngày Phát Hành | 2023-04-03 |
Nhà Phát Triển | heychristopherrrrr |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/hey-chris/style-my-tana |
URL Trang Trợ Giúp | https://twitter.com/heychris_eth |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Style my Tana", "version": "1.0", "description": "A Chrome extension to edit styles on app.tana.inc", "icons": { "48": "icon48.png" }, "action": { "default_icon": "icon48.png", "default_popup": "popup.html" }, "permissions": [ "activeTab", "scripting" ], "content_scripts": [ { "matches": [ "*:\/\/app.tana.inc\/*" ], "css": [ "contentStyle.css" ] } ], "background": { "service_worker": "service-worker.js" } } |