BBCodePaste

Add a context menu to paste HTML formatted clipboard text as BBCode.

Was ist BBCodePaste?

BBCodePaste ist eine Chrome-Erweiterung, die von David J. entwickelt wurde, und ihr Hauptmerkmal ist "Add a context menu to paste HTML formatted clipboard text as BBCode.".

Erweiterungsscreenshots

screenshot

BBCodePaste-Erweiterungs-CRX-Datei herunterladen

Laden Sie BBCodePaste-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name BBCodePaste BBCodePaste
ID gendnhpciglkoaccpighggnohmmogfnp
Offizielle URL https://chrome.google.com/webstore/detail/bbcodepaste/gendnhpciglkoaccpighggnohmmogfnp
Beschreibung Add a context menu to paste HTML formatted clipboard text as BBCode.
Dateigröße 8.61 KB
Installationsanzahl 68
Aktuelle Version 1.3
Letztes Update 2017-05-02
Veröffentlichungsdatum 2017-05-02
Bewertung 2.75/5 Insgesamt 4 Bewertungen
Entwickler David J.
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}