Quick Pastebin

Post your code to Pastebin easily from your browser

Cos'è Quick Pastebin?

Quick Pastebin è un'estensione di Chrome sviluppata da Rishabh Mahajan, e la sua funzione principale è "Post your code to Pastebin easily from your browser".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Quick Pastebin

Scarica i file di estensione Quick Pastebin 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

                        Quickly post your code to pastebin from this chrome browser extension.

The code for this extension is open-sourced at https://github.com/rishabhmhjn/chrome-pastebin 

If you have any suggestion/issue/request, please create a new issue at https://github.com/rishabhmhjn/chrome-pastebin/issues                    

Informazioni di Base sull'Estensione

Nome Quick Pastebin Quick Pastebin
ID hmdndbgnknnelnfjiehmllanaljnejmg
URL Ufficiale https://chromewebstore.google.com/detail/quick-pastebin/hmdndbgnknnelnfjiehmllanaljnejmg
Descrizione Post your code to Pastebin easily from your browser
Dimensione del File 130 KB
Conteggio Installazioni 515
Versione Corrente 0.0.9
Ultimo Aggiornamento 2013-09-13
Data di Pubblicazione 2013-09-12
Valutazione 3.30/5 Totale 10 Valutazioni
Sviluppatore Rishabh Mahajan
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/rishabhmhjn/chrome-pastebin
URL della Pagina di Aiuto https://github.com/rishabhmhjn/chrome-pastebin/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.0.9",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon_16.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "default_locale": "en",
    "permissions": [
        "http:\/\/pastebin.com\/api\/"
    ],
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "options_page": "options.html",
    "browser_action": {
        "default_icon": {
            "19": "images\/icon_19.png",
            "38": "images\/icon_38.png"
        },
        "default_title": "__MSG_appName__",
        "default_popup": "popup.html"
    }
}