BBCodePaste
Add a context menu to paste HTML formatted clipboard text as BBCode.
什麼是BBCodePaste?
BBCodePaste是由David J.開發的Chrome擴展程式,該擴展的主要功能是“Add a context menu to paste HTML formatted clipboard text as BBCode.”。
擴展截圖
下載BBCodePaste擴展crx文件
下載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 |
| 官方網址 | 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"
]
}
]
} | |