GitHub Pocket
Read It Later for GitHub
Co to jest GitHub Pocket?
GitHub Pocket to rozszerzenie Chrome opracowane przez David Pavlík, a jego główną funkcją jest „Read It Later for GitHub”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia GitHub Pocket
Pobierz pliki rozszerzeń GitHub Pocket 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
Ahhhhh, sometimes I don't want to star a repo and I just have no time to know if it's really interesting, but it looks it is! I don't want to miss good stuff either. So I just add it to Pocket and read it later! Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | cfkoiggmhiohdhpkcpinclakhcodmdal |
| Oficjalny URL | https://chromewebstore.google.com/detail/github-pocket/cfkoiggmhiohdhpkcpinclakhcodmdal |
| Opis | Read It Later for GitHub |
| Rozmiar pliku | 49.72 KB |
| Liczba instalacji | 42 |
| Aktualna Wersja | 0.1.0 |
| Ostatnia Aktualizacja | 2017-02-01 |
| Data Publikacji | 2017-02-01 |
| Ocena | 5.00/5 Łącznie 1 Oceny |
| Deweloper | David Pavlík |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/egoist/github-pocket |
| Obsługiwane Języki | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"description": "Read It Later for GitHub",
"manifest_version": 2,
"name": "GitHub Pocket",
"offline_enabled": true,
"version": "0.1.0",
"icons": {
"128": "img\/icon.png"
},
"permissions": [
"https:\/\/github.com\/*",
"storage"
],
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"https:\/\/github.com\/*"
],
"js": [
"js\/vue.js",
"js\/main.js"
],
"css": [
"css\/main.css"
]
}
]
} | |