BBCodePaste
Add a context menu to paste HTML formatted clipboard text as BBCode.
Qu'est-ce que BBCodePaste ?
BBCodePaste est une extension Chrome développée par David J., et sa fonction principale est "Add a context menu to paste HTML formatted clipboard text as BBCode.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension BBCodePaste
Téléchargez les fichiers d'extension BBCodePaste au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | gendnhpciglkoaccpighggnohmmogfnp |
URL Officiel | https://chrome.google.com/webstore/detail/bbcodepaste/gendnhpciglkoaccpighggnohmmogfnp |
Description | Add a context menu to paste HTML formatted clipboard text as BBCode. |
Taille du Fichier | 8.61 KB |
Nombre d'Installations | 68 |
Version Actuelle | 1.3 |
Dernière Mise à Jour | 2017-05-02 |
Date de Publication | 2017-05-02 |
Évaluation | 2.75/5 Total 4 Évaluations |
Développeur | David J. |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } ] } |