Gistify
This extension searches for gist URLs in a page and replaces them with embedded gists.
O que é Gistify?
Gistify é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "This extension searches for gist URLs in a page and replaces them with embedded gists.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Gistify
Baixe arquivos de extensão Gistify no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Gistify |
ID | bjapmncmmhnhbfkfaopdajhmhccfhonm |
URL Oficial | https://chromewebstore.google.com/detail/gistify/bjapmncmmhnhbfkfaopdajhmhccfhonm |
Descrição | This extension searches for gist URLs in a page and replaces them with embedded gists. |
Tamanho do Arquivo | 40.31 KB |
Contagem de Instalações | 17 |
Versão Atual | 1.0 |
Última Atualização | 2016-02-26 |
Data de Publicação | 2016-02-26 |
Classificação | 4.83/5 Total de 6 Avaliações |
Desenvolvedor | Unknown |
Tipo de Pagamento | free |
Site da Extensão | http://bit.ly/1NbxNzV |
Idiomas Suportados | 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\/" ] } |