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」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

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.                    

拡張機能の基本情報

名前 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
Eメール [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"
    }
}