Quick Pastebin

Post your code to Pastebin easily from your browser

O que é Quick Pastebin?

Quick Pastebin é uma extensão do Chrome desenvolvida por Rishabh Mahajan, e sua principal característica é "Post your code to Pastebin easily from your browser".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Quick Pastebin

Baixe arquivos de extensão Quick Pastebin no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Quick Pastebin Quick Pastebin
ID hmdndbgnknnelnfjiehmllanaljnejmg
URL Oficial https://chromewebstore.google.com/detail/quick-pastebin/hmdndbgnknnelnfjiehmllanaljnejmg
Descrição Post your code to Pastebin easily from your browser
Tamanho do Arquivo 130 KB
Contagem de Instalações 515
Versão Atual 0.0.9
Última Atualização 2013-09-13
Data de Publicação 2013-09-12
Classificação 3.30/5 Total de 10 Avaliações
Desenvolvedor Rishabh Mahajan
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/rishabhmhjn/chrome-pastebin
URL da Página de Ajuda https://github.com/rishabhmhjn/chrome-pastebin/issues
Idiomas Suportados 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"
    }
}