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 с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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
URL страницы помощи 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"
            ]
        }
    ]
}