Scrapbox List Marker

A chrome extension for Customizing list marker of Scrapbox.

Scrapbox List Marker란 무엇입니까?

Scrapbox List Marker은(는) penicillin0에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A chrome extension for Customizing list marker of Scrapbox."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Scrapbox List Marker 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        【About this extension】
This is a third party extension for Scrapbox users.
Currently, Scrapbox allows you to customize the design to your liking by writing CSS. However, writing CSS is time-consuming and complicated to change.
This extension allows you to change Scrapbox's list markers to your liking using a GUI-based interface.

【How to use】
- Click on the extension icon and a popup will appear.
- When you click the extension icon, a pop-up window will appear. You can customize the list markers (color changeable) by selecting one for each paragraph.
- Inserting an indent line (color changeable) makes it easier to understand the indent correspondence you are writing.
- The demonstration at the bottom of the screen allows you to see how it actually appears.

※ If you want to return to the default settings, please disable or delete the extension.
※ This is an unofficial extension, so please use it at your own risk.

Scrapbox official: https://scrapbox.io/product
Source code: https://github.com/penicillin0/scrapbox-list-marker

If you have any bugs or requests for additional features, please send them to
https://github.com/penicillin0/scrapbox-list-marker/issues                    

확장 프로그램 기본 정보

이름 Scrapbox List Marker Scrapbox List Marker
ID blogedecchmdohakakhmboefiiendbec
공식 URL https://chromewebstore.google.com/detail/scrapbox-list-marker/blogedecchmdohakakhmboefiiendbec
설명 A chrome extension for Customizing list marker of Scrapbox.
파일 크기 1.58 MB
설치 횟수 111
현재 버전 1.7.0
최근 업데이트 2022-05-10
출시 날짜 2021-11-17
평점 5.00/5 총 1 개의 평점
개발자 penicillin0
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/penicillin0/scrapbox-list-marker
지원되는 언어 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Scrapbox List Marker",
    "description": "__MSG_appDescription__",
    "version": "1.7.0",
    "default_locale": "en",
    "manifest_version": 3,
    "action": {
        "default_title": "Scrapbox List Marker",
        "default_popup": "index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/scrapbox.io\/*\/*"
            ],
            "js": [
                "contentScriptDist.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "images\/16icon.png",
        "48": "images\/48icon.png",
        "128": "images\/128icon.png"
    }
}