Save as Gist
Save notes and webpage information as private gists.
Hvad er Save as Gist?
Save as Gist er en Chrome-udvidelse udviklet af nick.vanexan, og dens hovedfunktion er "Save notes and webpage information as private gists.".
Udvidelsesskærmbilleder
Download Save as Gist-udvidelses-CRX-fil
Download Save as Gist-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Save as Gist |
ID | bkdmkcpliolodfhpndnocfpglldmeeop |
Officiel URL | https://chromewebstore.google.com/detail/save-as-gist/bkdmkcpliolodfhpndnocfpglldmeeop |
Beskrivelse | Save notes and webpage information as private gists. |
Filstørrelse | 14.54 KB |
Antal Installationer | 79 |
Nuværende Version | 0.0.4 |
Senest Opdateret | 2018-04-18 |
Udgivelsesdato | 2018-04-17 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | nick.vanexan |
Betalingsmetode | free |
Understøttede Sprog | 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" } } |