Save as Gist

Save notes and webpage information as private gists.

Co je Save as Gist?

Save as Gist je rozšíření Chrome vyvinuté nick.vanexan, a jeho hlavní funkcí je „Save notes and webpage information as private gists.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Save as Gist

Stáhněte si soubory rozšíření Save as Gist ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Save as Gist Save as Gist
ID bkdmkcpliolodfhpndnocfpglldmeeop
Oficiální URL https://chromewebstore.google.com/detail/save-as-gist/bkdmkcpliolodfhpndnocfpglldmeeop
Popis Save notes and webpage information as private gists.
Velikost souboru 14.54 KB
Počet instalací 79
Aktuální Verze 0.0.4
Poslední Aktualizace 2018-04-18
Datum Vydání 2018-04-17
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář nick.vanexan
Typ Platby free
Podporované Jazyky 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"
    }
}