Save as Gist

Save notes and webpage information as private gists.

Cos'è Save as Gist?

Save as Gist è un'estensione di Chrome sviluppata da nick.vanexan, e la sua funzione principale è "Save notes and webpage information as private gists.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Save as Gist

Scarica i file di estensione Save as Gist in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Save as Gist Save as Gist
ID bkdmkcpliolodfhpndnocfpglldmeeop
URL Ufficiale https://chromewebstore.google.com/detail/save-as-gist/bkdmkcpliolodfhpndnocfpglldmeeop
Descrizione Save notes and webpage information as private gists.
Dimensione del File 14.54 KB
Conteggio Installazioni 79
Versione Corrente 0.0.4
Ultimo Aggiornamento 2018-04-18
Data di Pubblicazione 2018-04-17
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore nick.vanexan
Tipo di Pagamento free
Lingue Supportate 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"
    }
}