Style my Tana
A Chrome extension to edit styles on app.tana.inc
Cos'è Style my Tana?
Style my Tana è un'estensione di Chrome sviluppata da heychristopherrrrr, e la sua funzione principale è "A Chrome extension to edit styles on app.tana.inc".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Style my Tana
Scarica i file di estensione Style my Tana in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | kpjphbffhnikclcdlgglafcaknmbcbnj |
| URL Ufficiale | https://chromewebstore.google.com/detail/style-my-tana/kpjphbffhnikclcdlgglafcaknmbcbnj |
| Descrizione | A Chrome extension to edit styles on app.tana.inc |
| Dimensione del File | 11.13 KB |
| Conteggio Installazioni | 29 |
| Versione Corrente | 1.0 |
| Ultimo Aggiornamento | 2023-04-03 |
| Data di Pubblicazione | 2023-04-03 |
| Sviluppatore | heychristopherrrrr |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/hey-chris/style-my-tana |
| URL della Pagina di Aiuto | https://twitter.com/heychris_eth |
| Lingue Supportate | 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"
}
} | |