Save as Gist
Save notes and webpage information as private gists.
Co to jest Save as Gist?
Save as Gist to rozszerzenie Chrome opracowane przez nick.vanexan, a jego główną funkcją jest „Save notes and webpage information as private gists.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Save as Gist
Pobierz pliki rozszerzeń Save as Gist w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | bkdmkcpliolodfhpndnocfpglldmeeop |
| Oficjalny URL | https://chromewebstore.google.com/detail/save-as-gist/bkdmkcpliolodfhpndnocfpglldmeeop |
| Opis | Save notes and webpage information as private gists. |
| Rozmiar pliku | 14.54 KB |
| Liczba instalacji | 79 |
| Aktualna Wersja | 0.0.4 |
| Ostatnia Aktualizacja | 2018-04-18 |
| Data Publikacji | 2018-04-17 |
| Ocena | 5.00/5 Łącznie 1 Oceny |
| Deweloper | nick.vanexan |
| Typ Płatności | free |
| Obsługiwane Języki | 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"
}
} | |