Quick Pastebin
Post your code to Pastebin easily from your browser
Was ist Quick Pastebin?
Quick Pastebin ist eine Chrome-Erweiterung, die von Rishabh Mahajan entwickelt wurde, und ihr Hauptmerkmal ist "Post your code to Pastebin easily from your browser".
Erweiterungsscreenshots
Quick Pastebin-Erweiterungs-CRX-Datei herunterladen
Laden Sie Quick Pastebin-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Quick Pastebin |
ID | hmdndbgnknnelnfjiehmllanaljnejmg |
Offizielle URL | https://chromewebstore.google.com/detail/quick-pastebin/hmdndbgnknnelnfjiehmllanaljnejmg |
Beschreibung | Post your code to Pastebin easily from your browser |
Dateigröße | 130 KB |
Installationsanzahl | 515 |
Aktuelle Version | 0.0.9 |
Letztes Update | 2013-09-13 |
Veröffentlichungsdatum | 2013-09-12 |
Bewertung | 3.30/5 Insgesamt 10 Bewertungen |
Entwickler | Rishabh Mahajan |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/rishabhmhjn/chrome-pastebin |
Hilfeseite URL | https://github.com/rishabhmhjn/chrome-pastebin/issues |
Unterstützte Sprachen | 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" } } |