CodiMD Book mode

Display a sidebar like HackMD book mode

CodiMD Book mode란 무엇입니까?

CodiMD Book mode은(는) 0140454에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Display a sidebar like HackMD book mode"입니다.

확장 프로그램 스크린샷

screenshot

CodiMD Book mode 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        ## Disclaimer

* This extension is NOT developed by HackMD team.
* I develop this extension for personal use.
  There may be undiscovered defects. Please think twice before use.

## Requested Permissions

* webRequest
  Read security headers related to iframe
* declarativeNetRequest
  Modify found security headers to make functionality working

## Notice

* Hostname must contains hackmd or codimd; otherwise, this extension will not enable book mode.
  In the other words, if you host CodiMD without domain name, this extension is not for you.

## How to use?

1. Install extension
2. Open your note for book index (e.g. https://codimd.your.domain/note)
3. Add `book` to query string (e.g. https://codimd.your.domain/note?book)
4. Enjoy it

## Difference between this extension and HackMD

* Links will be opened in new tab
  * HackMD
    * [target=_blank] is added explicitly
    * Starts with http (non-SSL)
  * This extension
    * [target=_blank] is added explicitly
    * Cross-origin                    

확장 프로그램 기본 정보

이름 CodiMD Book mode CodiMD Book mode
ID apahkbcjkfpaknjebpaoaehpjiedeapa
공식 URL https://chromewebstore.google.com/detail/codimd-book-mode/apahkbcjkfpaknjebpaoaehpjiedeapa
설명 Display a sidebar like HackMD book mode
파일 크기 82.18 KB
설치 횟수 81
현재 버전 1.0.0
최근 업데이트 2022-12-07
출시 날짜 2020-12-15
개발자 0140454
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/0140454/codimd-book
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CodiMD Book mode",
    "version": "1.0.0",
    "description": "Display a sidebar like HackMD book mode",
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "webRequest",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "include_globs": [
                "*hackmd*?*book*",
                "*codimd*?*book*"
            ],
            "run_at": "document_start",
            "css": [
                "css\/book.css"
            ],
            "js": [
                "js\/book.js"
            ]
        }
    ],
    "manifest_version": 3
}