Quick Pastebin

Post your code to Pastebin easily from your browser

ما هو Quick Pastebin؟

Quick Pastebin هو إضافة Chrome تم تطويرها بواسطة Rishabh Mahajan، والميزة الرئيسية لها هي "Post your code to Pastebin easily from your browser".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Quick Pastebin

قم بتنزيل ملفات الامتداد Quick Pastebin بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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                    

معلومات أساسية عن التمديد

الاسم Quick Pastebin Quick Pastebin
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
عنوان صفحة المساعدة 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"
    }
}