Serum

Easy link blogging to a Github-hosted Jekyll blog

Что такое Serum?

Serum - это расширение Chrome, разработанное D Mison, и его основная функция - "Easy link blogging to a Github-hosted Jekyll blog".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Serum

Скачайте файлы расширений Serum в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        A simple extension to make link-blogging to a Github-hosted Jekyll blog easy.

Just select the text you want to quote, click the toolbar button and make any necessary tweaks to the post and the new post file is added to the specified directory of your Jekyll blog on Github.                    

Основная информация о расширении

Название Serum Serum
ID ffboflhdigfmnnokjjcmfipgehggjhlj
Официальный URL https://chromewebstore.google.com/detail/serum/ffboflhdigfmnnokjjcmfipgehggjhlj
Описание Easy link blogging to a Github-hosted Jekyll blog
Размер файла 2.09 MB
Количество установок 20
Текущая Версия 1.2.0
Последнее Обновление 2017-01-29
Дата публикации 2017-01-28
Рейтинг 5.00/5 Всего 1 оценок
Разработчик D Mison
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "1.2.0",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/test_tube.png",
        "128": "images\/test_tube.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/eventPage.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/test_tube.png",
            "38": "images\/test_tube.png"
        },
        "default_title": "Serum"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "contextMenus",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}