Quick Pastebin
Post your code to Pastebin easily from your browser
什麼是Quick Pastebin?
Quick Pastebin是由Rishabh Mahajan開發的Chrome擴展程式,該擴展的主要功能是“Post your code to Pastebin easily from your browser”。
擴展截圖
下載Quick Pastebin擴展crx文件
下載Quick Pastebin擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 擴展基本資訊
| 名稱 | |
| ID | hmdndbgnknnelnfjiehmllanaljnejmg |
| 官方網址 | https://chromewebstore.google.com/detail/quick-pastebin/hmdndbgnknnelnfjiehmllanaljnejmg |
| 簡介 | Post your code to Pastebin easily from your browser |
| 檔案大小 | 130 KB |
| 安裝次數 | 515 |
| 目前版本 | 0.0.9 |
| 更新時間 | 2013-09-13 |
| 上架時間 | 2013-09-12 |
| 評分 | 3.30/5 共 10 次評分 |
| 開發者 | Rishabh Mahajan |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/rishabhmhjn/chrome-pastebin |
| 說明頁面URL | https://github.com/rishabhmhjn/chrome-pastebin/issues |
| 支援的語言 | 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"
}
} | |