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 |
| 官方網址 | 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"
}
} | |