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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}