Quick Pastebin

Post your code to Pastebin easily from your browser

Vad är Quick Pastebin?

Quick Pastebin är en Chrome-tillägg utvecklad av Rishabh Mahajan, och dess huvudfunktion är "Post your code to Pastebin easily from your browser".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Quick Pastebin-förlängningens CRX-fil

Ladda ner Quick Pastebin-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Quick Pastebin Quick Pastebin
ID hmdndbgnknnelnfjiehmllanaljnejmg
Officiell webbadress https://chromewebstore.google.com/detail/quick-pastebin/hmdndbgnknnelnfjiehmllanaljnejmg
Beskrivning Post your code to Pastebin easily from your browser
Filstorlek 130 KB
Antal Installationer 515
Aktuell Version 0.0.9
Senast Uppdaterad 2013-09-13
Publiceringsdatum 2013-09-12
Betyg 3.30/5 Totalt 10 Betyg
Utvecklare Rishabh Mahajan
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/rishabhmhjn/chrome-pastebin
Hjälpsida URL https://github.com/rishabhmhjn/chrome-pastebin/issues
Stödda Språk 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"
    }
}