Style my Tana
A Chrome extension to edit styles on app.tana.inc
Что такое Style my Tana?
Style my Tana - это расширение Chrome, разработанное heychristopherrrrr, и его основная функция - "A Chrome extension to edit styles on app.tana.inc".
Снимки экрана расширения
Скачать файл CRX расширения Style my Tana
Скачайте файлы расширений Style my Tana в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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" } } |