BBCodePaste
Add a context menu to paste HTML formatted clipboard text as BBCode.
BBCodePasteคืออะไร?
BBCodePaste เป็นส่วนขยายของ Chrome ที่พัฒนาโดย David J. และคุณลักษณะหลักของมันคือ "Add a context menu to paste HTML formatted clipboard text as BBCode."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย BBCodePaste
ดาวน์โหลดไฟล์ส่วนขยาย BBCodePaste ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Adds a context menu to paste content from the clipboard which converts HTML Formatted Text to BBCode. Useful to paste formatted text into web-forum software such as phpBB. Source code available on github. https://github.com/jeske/BBCodePaste
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | gendnhpciglkoaccpighggnohmmogfnp |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/bbcodepaste/gendnhpciglkoaccpighggnohmmogfnp |
คำอธิบาย | Add a context menu to paste HTML formatted clipboard text as BBCode. |
ขนาดไฟล์ | 8.61 KB |
จำนวนการติดตั้ง | 68 |
เวอร์ชันปัจจุบัน | 1.3 |
อัปเดตครั้งล่าสุด | 2017-05-02 |
วันที่เผยแพร่ | 2017-05-02 |
คะแนน | 2.75/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | David J. |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "BBCodePaste", "version": "1.3", "manifest_version": 2, "description": "Add a context menu to paste HTML formatted clipboard text as BBCode.", "permissions": [ "contextMenus", "tabs", "clipboardRead" ], "icons": { "16": "bbcodepasteicon.png", "48": "bbcodepasteicon.png", "128": "bbcodepasteicon.png" }, "background": { "scripts": [ "bbcodepaste.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ], "js": [ "content_script.js" ] } ] } |