Save as Gist
Save notes and webpage information as private gists.
Vad är Save as Gist?
Save as Gist är en Chrome-tillägg utvecklad av nick.vanexan, och dess huvudfunktion är "Save notes and webpage information as private gists.".
Tilläggsskärmbilder
Ladda ner Save as Gist-förlängningens CRX-fil
Ladda ner Save as Gist-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
| Namn | |
| ID | bkdmkcpliolodfhpndnocfpglldmeeop |
| Officiell webbadress | https://chromewebstore.google.com/detail/save-as-gist/bkdmkcpliolodfhpndnocfpglldmeeop |
| Beskrivning | Save notes and webpage information as private gists. |
| Filstorlek | 14.54 KB |
| Antal Installationer | 79 |
| Aktuell Version | 0.0.4 |
| Senast Uppdaterad | 2018-04-18 |
| Publiceringsdatum | 2018-04-17 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | nick.vanexan |
| Betalningssätt | free |
| Stödda Språk | 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"
}
} | |