Save as Gist
Save notes and webpage information as private gists.
Qu'est-ce que Save as Gist ?
Save as Gist est une extension Chrome développée par nick.vanexan, et sa fonction principale est "Save notes and webpage information as private gists.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Save as Gist
Téléchargez les fichiers d'extension Save as Gist au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Save as Gist |
ID | bkdmkcpliolodfhpndnocfpglldmeeop |
URL Officiel | https://chromewebstore.google.com/detail/save-as-gist/bkdmkcpliolodfhpndnocfpglldmeeop |
Description | Save notes and webpage information as private gists. |
Taille du Fichier | 14.54 KB |
Nombre d'Installations | 79 |
Version Actuelle | 0.0.4 |
Dernière Mise à Jour | 2018-04-18 |
Date de Publication | 2018-04-17 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | nick.vanexan |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |