BBCodePaste
Add a context menu to paste HTML formatted clipboard text as BBCode.
What is BBCodePaste?
BBCodePaste is a Chrome extension developed by David J., and its main feature is "Add a context menu to paste HTML formatted clipboard text as BBCode.".
Extension Screenshots
Download BBCodePaste Extension CRX File
Download BBCodePaste extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | |
ID | gendnhpciglkoaccpighggnohmmogfnp |
Official URL | https://chrome.google.com/webstore/detail/bbcodepaste/gendnhpciglkoaccpighggnohmmogfnp |
Description | Add a context menu to paste HTML formatted clipboard text as BBCode. |
File Size | 8.61 KB |
Installation Count | 68 |
Current Version | 1.3 |
Last Updated | 2017-05-02 |
Publish Date | 2017-05-02 |
Rating | 2.75/5 Total 4 Ratings |
Developer | David J. |
Payment Type | free |
Supported Languages | 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" ] } ] } |