Save as Gist

Save notes and webpage information as private gists.

ما هو Save as Gist؟

Save as Gist هو إضافة Chrome تم تطويرها بواسطة nick.vanexan، والميزة الرئيسية لها هي "Save notes and webpage information as private gists.".

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

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Save as Gist

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

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

                        This allows you to save a note to your private gists on GitHub. If you are on a webpage and highlight certain text, it will pre-populate your note with that text.                    

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

الاسم Save as Gist Save as Gist
ID bkdmkcpliolodfhpndnocfpglldmeeop
عنوان URL الرسمي https://chromewebstore.google.com/detail/save-as-gist/bkdmkcpliolodfhpndnocfpglldmeeop
الوصف Save notes and webpage information as private gists.
حجم الملف 14.54 KB
عدد التثبيتات 79
النسخة الحالية 0.0.4
آخر تحديث 2018-04-18
تاريخ النشر 2018-04-17
تقييم 5.00/5 مجموع تقييمات 1
المطور nick.vanexan
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Save as Gist",
    "version": "0.0.4",
    "description": "Save notes and webpage information as private gists.",
    "permissions": [
        "storage",
        "identity",
        "activeTab",
        "https:\/\/api.github.com\/*",
        "https:\/\/github.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "manifest_version": 2,
    "browser_action": {
        "default_title": "Create new gist",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}