BBCodePaste

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

Cos'è BBCodePaste?

BBCodePaste è un'estensione di Chrome sviluppata da David J., e la sua funzione principale è "Add a context menu to paste HTML formatted clipboard text as BBCode.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione BBCodePaste

Scarica i file di estensione BBCodePaste in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome BBCodePaste BBCodePaste
ID gendnhpciglkoaccpighggnohmmogfnp
URL Ufficiale https://chrome.google.com/webstore/detail/bbcodepaste/gendnhpciglkoaccpighggnohmmogfnp
Descrizione Add a context menu to paste HTML formatted clipboard text as BBCode.
Dimensione del File 8.61 KB
Conteggio Installazioni 68
Versione Corrente 1.3
Ultimo Aggiornamento 2017-05-02
Data di Pubblicazione 2017-05-02
Valutazione 2.75/5 Totale 4 Valutazioni
Sviluppatore David J.
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}