mdblogger
Markdown editor for blogger
mdbloggerคืออะไร?
mdblogger เป็นส่วนขยายของ Chrome ที่พัฒนาโดย opdev1004 และคุณลักษณะหลักของมันคือ "Markdown editor for blogger"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย mdblogger
ดาวน์โหลดไฟล์ส่วนขยาย mdblogger ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
'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 |
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" ] } ] } |