Snippets

Import and execute JavaScript code snippets from GitHub

ما هو Snippets؟

Snippets هو إضافة Chrome تم تطويرها بواسطة riscarrott، والميزة الرئيسية لها هي "Import and execute JavaScript code snippets from GitHub".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Snippets allows you to import JavaScript code snippets from GitHub (including GitHub Enterprise) and execute them via the context menu or omnibox.

The code is open source and can be found here https://github.com/richardscarrott/snippets                    

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

الاسم Snippets Snippets
ID dcibnkkafifbanoclgjbkmkbogijndin
عنوان URL الرسمي https://chromewebstore.google.com/detail/snippets/dcibnkkafifbanoclgjbkmkbogijndin
الوصف Import and execute JavaScript code snippets from GitHub
حجم الملف 2.13 MB
عدد التثبيتات 388
النسخة الحالية 0.2.7
آخر تحديث 2022-08-07
تاريخ النشر 2018-05-13
تقييم 4.88/5 مجموع تقييمات 8
المطور riscarrott
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة http://github.com/richardscarrott/snippets
عنوان صفحة المساعدة http://github.com/richardscarrott/snippets/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Snippets",
    "version": "0.2.7",
    "manifest_version": 2,
    "description": "Import and execute JavaScript code snippets from GitHub",
    "homepage_url": "http:\/\/github.com\/richardscarrott\/snippets",
    "omnibox": {
        "keyword": "s"
    },
    "icons": {
        "16": "artwork\/icon-128.png",
        "48": "artwork\/icon-128.png",
        "128": "artwork\/icon-128.png"
    },
    "background": {
        "scripts": [
            "dist\/background.js"
        ],
        "persistent": true
    },
    "browser_action": [],
    "options_page": "dist\/options.html",
    "options_ui": {
        "page": "dist\/options.html",
        "chrome_style": false,
        "open_in_tab": true
    },
    "permissions": [
        "contextMenus",
        "storage",
        "unlimitedStorage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "dist\/content.js"
            ]
        }
    ]
}