Style my Tana
A Chrome extension to edit styles on app.tana.inc
Qu'est-ce que Style my Tana ?
Style my Tana est une extension Chrome développée par heychristopherrrrr, et sa fonction principale est "A Chrome extension to edit styles on app.tana.inc".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Style my Tana
Téléchargez les fichiers d'extension Style my Tana au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Style my Tana |
ID | kpjphbffhnikclcdlgglafcaknmbcbnj |
URL Officiel | https://chromewebstore.google.com/detail/style-my-tana/kpjphbffhnikclcdlgglafcaknmbcbnj |
Description | A Chrome extension to edit styles on app.tana.inc |
Taille du Fichier | 11.13 KB |
Nombre d'Installations | 29 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2023-04-03 |
Date de Publication | 2023-04-03 |
Développeur | heychristopherrrrr |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/hey-chris/style-my-tana |
URL de la Page d'Aide | https://twitter.com/heychris_eth |
Langues Prises en Charge | 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" } } |