Quick Pastebin
Post your code to Pastebin easily from your browser
Hvad er Quick Pastebin?
Quick Pastebin er en Chrome-udvidelse udviklet af Rishabh Mahajan, og dens hovedfunktion er "Post your code to Pastebin easily from your browser".
Udvidelsesskærmbilleder
Download Quick Pastebin-udvidelses-CRX-fil
Download Quick Pastebin-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
| Navn | |
| ID | hmdndbgnknnelnfjiehmllanaljnejmg |
| Officiel URL | https://chromewebstore.google.com/detail/quick-pastebin/hmdndbgnknnelnfjiehmllanaljnejmg |
| Beskrivelse | Post your code to Pastebin easily from your browser |
| Filstørrelse | 130 KB |
| Antal Installationer | 515 |
| Nuværende Version | 0.0.9 |
| Senest Opdateret | 2013-09-13 |
| Udgivelsesdato | 2013-09-12 |
| Bedømmelse | 3.30/5 Samlet 10 Bedømmelser |
| Udvikler | Rishabh Mahajan |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/rishabhmhjn/chrome-pastebin |
| Hjælpeside-URL | https://github.com/rishabhmhjn/chrome-pastebin/issues |
| Understøttede Sprog | 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"
}
} | |