Gistify

This extension searches for gist URLs in a page and replaces them with embedded gists.

ما هو Gistify؟

Gistify هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "This extension searches for gist URLs in a page and replaces them with embedded gists.".

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

screenshot

تحميل ملف CRX للإضافة Gistify

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

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

                        A chrome extension that searches for Gist URL's on the page and replaces them with embedded gists. Inspired by poorly formatted code in the comments on the blondiebytes YouTube channel (http://bit.ly/1NbxNzV).

Contributors: George Witteman, Kathryn Hodge                    

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

الاسم Gistify Gistify
ID bjapmncmmhnhbfkfaopdajhmhccfhonm
عنوان URL الرسمي https://chromewebstore.google.com/detail/gistify/bjapmncmmhnhbfkfaopdajhmhccfhonm
الوصف This extension searches for gist URLs in a page and replaces them with embedded gists.
حجم الملف 40.31 KB
عدد التثبيتات 17
النسخة الحالية 1.0
آخر تحديث 2016-02-26
تاريخ النشر 2016-02-26
تقييم 4.83/5 مجموع تقييمات 6
المطور Unknown
نوع الدفع free
موقع الإضافة http://bit.ly/1NbxNzV
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Gistify",
    "description": "This extension searches for gist URLs in a page and replaces them with embedded gists.",
    "version": "1.0",
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon48.png",
        "default_title": "Find Gists!"
    },
    "permissions": [
        "activeTab",
        "*:\/\/*.github.com\/"
    ]
}