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 |
| 官方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"
]
}
]
} | |