BBCodePaste
Add a context menu to paste HTML formatted clipboard text as BBCode.
Vad är BBCodePaste?
BBCodePaste är en Chrome-tillägg utvecklad av David J., och dess huvudfunktion är "Add a context menu to paste HTML formatted clipboard text as BBCode.".
Tilläggsskärmbilder
Ladda ner BBCodePaste-förlängningens CRX-fil
Ladda ner BBCodePaste-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | |
ID | gendnhpciglkoaccpighggnohmmogfnp |
Officiell webbadress | https://chrome.google.com/webstore/detail/bbcodepaste/gendnhpciglkoaccpighggnohmmogfnp |
Beskrivning | Add a context menu to paste HTML formatted clipboard text as BBCode. |
Filstorlek | 8.61 KB |
Antal Installationer | 68 |
Aktuell Version | 1.3 |
Senast Uppdaterad | 2017-05-02 |
Publiceringsdatum | 2017-05-02 |
Betyg | 2.75/5 Totalt 4 Betyg |
Utvecklare | David J. |
Betalningssätt | free |
Stödda Språk | 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" ] } ] } |