mdblogger

Markdown editor for blogger

mdblogger란 무엇입니까?

mdblogger은(는) opdev1004에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Markdown editor for blogger"입니다.

확장 프로그램 스크린샷

screenshot

mdblogger 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        'mdblogger' is a markdown editor for google blogger. This extension insert a markdown editor to the blogger post edit page to let you use markdown editor. Nowadays a markdown editor is more preferred as a writer can focus on their writing instead of styling their writing. 

With mdblogger, you can load and save markdown content as well.

Things you must know:

After you are done writing, you must edit the blogger's editor once before finishing your post. Like 'adding a space and remove it' or 'change from compose view to html view'. Because the content is not going to be saved as a draft or updated or published until the blogger editor updates the post data that is hidden.

Pressing 'Ctrl' and 'q' will copy what is in the blogger editor(Left side) to the markdown editor(Right side). Use this short cut('ctrl + q') for adding images. But you can also use the markdown editor's image uploading system. In that case the image will be stored as a data in your post. And your post can be a bit messy. For the videos, you have to use the blogger editor to add them. Markdown editor does not support videos and it will probably convert the video to a single image.

This extension is an open source extension with MIT license. It is free for commercial and non-commercial use.

If you have a custom theme, it might cause some problems for some cases. Because they affect styling of the edit page. In many other case, if this extension is not working, just try to refresh(F5) the edit page. This extension does not back-up your data. So make sure you back-up your unsaved data.                    

확장 프로그램 기본 정보

이름 mdblogger mdblogger
ID mmdaohoahbhbjmlodlonnkdchdbhknmp
공식 URL https://chromewebstore.google.com/detail/mdblogger/mmdaohoahbhbjmlodlonnkdchdbhknmp
설명 Markdown editor for blogger
파일 크기 279 KB
설치 횟수 52
현재 버전 0.0.4
최근 업데이트 2024-02-16
출시 날짜 2023-04-19
개발자 opdev1004
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/opdev1004/mdblogger/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "mdblogger",
    "version": "0.0.4",
    "description": "Markdown editor for blogger",
    "icons": {
        "16": "16.png",
        "32": "32.png",
        "48": "48.png",
        "128": "128.png"
    },
    "author": "https:\/\/github.com\/opdev1004",
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.blogger.com\/*"
            ],
            "css": [
                "toastui-editor.min.css",
                "main.css"
            ],
            "js": [
                "toastui-editor-all.min.js",
                "main.js"
            ]
        }
    ]
}