Gistify
This extension searches for gist URLs in a page and replaces them with embedded gists.
Co je Gistify?
Gistify je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „This extension searches for gist URLs in a page and replaces them with embedded gists.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Gistify
Stáhněte si soubory rozšíření Gistify ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Gistify |
ID | bjapmncmmhnhbfkfaopdajhmhccfhonm |
Oficiální URL | https://chromewebstore.google.com/detail/gistify/bjapmncmmhnhbfkfaopdajhmhccfhonm |
Popis | This extension searches for gist URLs in a page and replaces them with embedded gists. |
Velikost souboru | 40.31 KB |
Počet instalací | 17 |
Aktuální Verze | 1.0 |
Poslední Aktualizace | 2016-02-26 |
Datum Vydání | 2016-02-26 |
Hodnocení | 4.83/5 Celkem 6 Hodnocení |
Vývojář | Unknown |
Typ Platby | free |
Webové stránky Rozšíření | http://bit.ly/1NbxNzV |
Podporované Jazyky | 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\/" ] } |