Save as Gist
Save notes and webpage information as private gists.
What is Save as Gist?
Save as Gist is a Chrome extension developed by nick.vanexan, and its main feature is "Save notes and webpage information as private gists.".
Extension Screenshots
Download Save as Gist Extension CRX File
Download Save as Gist extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Save as Gist |
ID | bkdmkcpliolodfhpndnocfpglldmeeop |
Official URL | https://chromewebstore.google.com/detail/save-as-gist/bkdmkcpliolodfhpndnocfpglldmeeop |
Description | Save notes and webpage information as private gists. |
File Size | 14.54 KB |
Installation Count | 79 |
Current Version | 0.0.4 |
Last Updated | 2018-04-18 |
Publish Date | 2018-04-17 |
Rating | 5.00/5 Total 1 Ratings |
Developer | nick.vanexan |
Payment Type | free |
Supported Languages | 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" } } |