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"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ 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 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"
    }
}