Gistify
This extension searches for gist URLs in a page and replaces them with embedded gists.
Co to jest Gistify?
Gistify to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „This extension searches for gist URLs in a page and replaces them with embedded gists.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Gistify
Pobierz pliki rozszerzeń Gistify 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
A chrome extension that searches for Gist URL's on the page and replaces them with embedded gists. Inspired by poorly formatted code in the comments on the blondiebytes YouTube channel (http://bit.ly/1NbxNzV).
Contributors: George Witteman, Kathryn Hodge Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | bjapmncmmhnhbfkfaopdajhmhccfhonm |
| Oficjalny URL | https://chromewebstore.google.com/detail/gistify/bjapmncmmhnhbfkfaopdajhmhccfhonm |
| Opis | This extension searches for gist URLs in a page and replaces them with embedded gists. |
| Rozmiar pliku | 40.31 KB |
| Liczba instalacji | 17 |
| Aktualna Wersja | 1.0 |
| Ostatnia Aktualizacja | 2016-02-26 |
| Data Publikacji | 2016-02-26 |
| Ocena | 4.83/5 Łącznie 6 Oceny |
| Deweloper | Unknown |
| Typ Płatności | free |
| Strona Rozszerzenia | http://bit.ly/1NbxNzV |
| Obsługiwane Języki | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Gistify",
"description": "This extension searches for gist URLs in a page and replaces them with embedded gists.",
"version": "1.0",
"background": {
"persistent": true,
"scripts": [
"background.js"
]
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"default_icon": "icon48.png",
"default_title": "Find Gists!"
},
"permissions": [
"activeTab",
"*:\/\/*.github.com\/"
]
} | |