Serum

Easy link blogging to a Github-hosted Jekyll blog

Was ist Serum?

Serum ist eine Chrome-Erweiterung, die von D Mison entwickelt wurde, und ihr Hauptmerkmal ist "Easy link blogging to a Github-hosted Jekyll blog".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Serum-Erweiterungs-CRX-Datei herunterladen

Laden Sie Serum-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Serum Serum
ID ffboflhdigfmnnokjjcmfipgehggjhlj
Offizielle URL https://chromewebstore.google.com/detail/serum/ffboflhdigfmnnokjjcmfipgehggjhlj
Beschreibung Easy link blogging to a Github-hosted Jekyll blog
Dateigröße 2.09 MB
Installationsanzahl 20
Aktuelle Version 1.2.0
Letztes Update 2017-01-29
Veröffentlichungsdatum 2017-01-28
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler D Mison
Zahlungsart free
Unterstützte Sprachen 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:\/\/*\/*"
    ]
}