BBCodePaste
Add a context menu to paste HTML formatted clipboard text as BBCode.
Hvad er BBCodePaste?
BBCodePaste er en Chrome-udvidelse udviklet af David J., og dens hovedfunktion er "Add a context menu to paste HTML formatted clipboard text as BBCode.".
Udvidelsesskærmbilleder
Download BBCodePaste-udvidelses-CRX-fil
Download BBCodePaste-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
| Navn | |
| ID | gendnhpciglkoaccpighggnohmmogfnp |
| Officiel URL | https://chrome.google.com/webstore/detail/bbcodepaste/gendnhpciglkoaccpighggnohmmogfnp |
| Beskrivelse | Add a context menu to paste HTML formatted clipboard text as BBCode. |
| Filstørrelse | 8.61 KB |
| Antal Installationer | 68 |
| Nuværende Version | 1.3 |
| Senest Opdateret | 2017-05-02 |
| Udgivelsesdato | 2017-05-02 |
| Bedømmelse | 2.75/5 Samlet 4 Bedømmelser |
| Udvikler | David J. |
| Betalingsmetode | free |
| Understøttede Sprog | 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"
]
}
]
} | |