Style my Tana
A Chrome extension to edit styles on app.tana.inc
Style my Tana क्या है?
Style my Tana heychristopherrrrr द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Chrome extension to edit styles on app.tana.inc"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Style my Tana एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | Style my Tana |
ID | kpjphbffhnikclcdlgglafcaknmbcbnj |
आधिकारिक URL | https://chromewebstore.google.com/detail/style-my-tana/kpjphbffhnikclcdlgglafcaknmbcbnj |
विवरण | A Chrome extension to edit styles on app.tana.inc |
फ़ाइल का आकार | 11.13 KB |
स्थापना संख्या | 29 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2023-04-03 |
प्रकाशन तिथि | 2023-04-03 |
डेवलपर | heychristopherrrrr |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/hey-chris/style-my-tana |
सहायता पृष्ठ URL | https://twitter.com/heychris_eth |
समर्थित भाषाएँ | 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" } } |