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 | 
| 官方URL | 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"
    }
}  |  |