Style my Tana
A Chrome extension to edit styles on app.tana.inc
什么是Style my Tana?
Style my Tana是由heychristopherrrrr开发的Chrome扩展程序,该扩展的主要功能是“A Chrome extension to edit styles on app.tana.inc”。
扩展截图
下载Style my Tana扩展crx文件
下载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. 扩展基本信息
| 名称 | |
| 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"
}
} | |