Style my Tana
A Chrome extension to edit styles on app.tana.inc
Hvad er Style my Tana?
Style my Tana er en Chrome-udvidelse udviklet af heychristopherrrrr, og dens hovedfunktion er "A Chrome extension to edit styles on app.tana.inc".
Udvidelsesskærmbilleder
Download Style my Tana-udvidelses-CRX-fil
Download Style my Tana-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | kpjphbffhnikclcdlgglafcaknmbcbnj |
| Officiel URL | https://chromewebstore.google.com/detail/style-my-tana/kpjphbffhnikclcdlgglafcaknmbcbnj |
| Beskrivelse | A Chrome extension to edit styles on app.tana.inc |
| Filstørrelse | 11.13 KB |
| Antal Installationer | 29 |
| Nuværende Version | 1.0 |
| Senest Opdateret | 2023-04-03 |
| Udgivelsesdato | 2023-04-03 |
| Udvikler | heychristopherrrrr |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/hey-chris/style-my-tana |
| Hjælpeside-URL | https://twitter.com/heychris_eth |
| Understøttede Sprog | 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"
}
} | |