BBCodePaste
Add a context menu to paste HTML formatted clipboard text as BBCode.
Wat is BBCodePaste?
BBCodePaste is een Chrome-extensie ontwikkeld door David J., en de belangrijkste functie is "Add a context menu to paste HTML formatted clipboard text as BBCode.".
Extensie Screenshots
Download het CRX-bestand van de extensie BBCodePaste
Download BBCodePaste-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | |
ID | gendnhpciglkoaccpighggnohmmogfnp |
Officiële URL | https://chrome.google.com/webstore/detail/bbcodepaste/gendnhpciglkoaccpighggnohmmogfnp |
Beschrijving | Add a context menu to paste HTML formatted clipboard text as BBCode. |
Bestandsgrootte | 8.61 KB |
Aantal Installaties | 68 |
Huidige Versie | 1.3 |
Laatst Bijgewerkt | 2017-05-02 |
Publicatiedatum | 2017-05-02 |
Beoordeling | 2.75/5 Totaal 4 Beoordelingen |
Ontwikkelaar | David J. |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } ] } |