BBCodePaste
Add a context menu to paste HTML formatted clipboard text as BBCode.
Apa itu BBCodePaste?
BBCodePaste adalah ekstensi Chrome yang dikembangkan oleh David J., dan fitur utamanya adalah "Add a context menu to paste HTML formatted clipboard text as BBCode.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi BBCodePaste
Unduh file ekstensi BBCodePaste 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
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
Informasi Dasar Ekstensi
Nama | |
ID | gendnhpciglkoaccpighggnohmmogfnp |
URL Resmi | https://chrome.google.com/webstore/detail/bbcodepaste/gendnhpciglkoaccpighggnohmmogfnp |
Deskripsi | Add a context menu to paste HTML formatted clipboard text as BBCode. |
Ukuran File | 8.61 KB |
Jumlah Instalasi | 68 |
Versi Saat Ini | 1.3 |
Terakhir Diperbarui | 2017-05-02 |
Tanggal Publikasi | 2017-05-02 |
Penilaian | 2.75/5 Total 4 Penilaian |
Pengembang | David J. |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } ] } |