CodiMD Book mode

Display a sidebar like HackMD book mode

Apa itu CodiMD Book mode?

CodiMD Book mode adalah ekstensi Chrome yang dikembangkan oleh 0140454, dan fitur utamanya adalah "Display a sidebar like HackMD book mode".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi CodiMD Book mode

Unduh file ekstensi CodiMD Book mode dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        ## 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                    

Informasi Dasar Ekstensi

Nama CodiMD Book mode CodiMD Book mode
ID apahkbcjkfpaknjebpaoaehpjiedeapa
URL Resmi https://chromewebstore.google.com/detail/codimd-book-mode/apahkbcjkfpaknjebpaoaehpjiedeapa
Deskripsi Display a sidebar like HackMD book mode
Ukuran File 82.18 KB
Jumlah Instalasi 81
Versi Saat Ini 1.0.0
Terakhir Diperbarui 2022-12-07
Tanggal Publikasi 2020-12-15
Pengembang 0140454
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/0140454/codimd-book
Bahasa yang Didukung 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
}