Quick Pastebin

Post your code to Pastebin easily from your browser

What is Quick Pastebin?

Quick Pastebin is a Chrome extension developed by Rishabh Mahajan, and its main feature is "Post your code to Pastebin easily from your browser".

Extension Screenshots

screenshot
screenshot

Download Quick Pastebin Extension CRX File

Download Quick Pastebin extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Quick Pastebin Quick Pastebin
ID hmdndbgnknnelnfjiehmllanaljnejmg
Official URL https://chromewebstore.google.com/detail/quick-pastebin/hmdndbgnknnelnfjiehmllanaljnejmg
Description Post your code to Pastebin easily from your browser
File Size 130 KB
Installation Count 515
Current Version 0.0.9
Last Updated 2013-09-13
Publish Date 2013-09-12
Rating 3.30/5 Total 10 Ratings
Developer Rishabh Mahajan
Email [email protected]
Payment Type free
Extension Website https://github.com/rishabhmhjn/chrome-pastebin
Help Page URL https://github.com/rishabhmhjn/chrome-pastebin/issues
Supported Languages 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"
    }
}