Save as Gist
Save notes and webpage information as private gists.
Was ist Save as Gist?
Save as Gist ist eine Chrome-Erweiterung, die von nick.vanexan entwickelt wurde, und ihr Hauptmerkmal ist "Save notes and webpage information as private gists.".
Erweiterungsscreenshots
Save as Gist-Erweiterungs-CRX-Datei herunterladen
Laden Sie Save as Gist-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
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.
Grundlegende Informationen zur Erweiterung
Name | Save as Gist |
ID | bkdmkcpliolodfhpndnocfpglldmeeop |
Offizielle URL | https://chromewebstore.google.com/detail/save-as-gist/bkdmkcpliolodfhpndnocfpglldmeeop |
Beschreibung | Save notes and webpage information as private gists. |
Dateigröße | 14.54 KB |
Installationsanzahl | 79 |
Aktuelle Version | 0.0.4 |
Letztes Update | 2018-04-18 |
Veröffentlichungsdatum | 2018-04-17 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | nick.vanexan |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |