Gistify
This extension searches for gist URLs in a page and replaces them with embedded gists.
Hvad er Gistify?
Gistify er en Chrome-udvidelse udviklet af Unknown, og dens hovedfunktion er "This extension searches for gist URLs in a page and replaces them with embedded gists.".
Udvidelsesskærmbilleder
Download Gistify-udvidelses-CRX-fil
Download Gistify-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | Gistify |
ID | bjapmncmmhnhbfkfaopdajhmhccfhonm |
Officiel URL | https://chromewebstore.google.com/detail/gistify/bjapmncmmhnhbfkfaopdajhmhccfhonm |
Beskrivelse | This extension searches for gist URLs in a page and replaces them with embedded gists. |
Filstørrelse | 40.31 KB |
Antal Installationer | 17 |
Nuværende Version | 1.0 |
Senest Opdateret | 2016-02-26 |
Udgivelsesdato | 2016-02-26 |
Bedømmelse | 4.83/5 Samlet 6 Bedømmelser |
Udvikler | Unknown |
Betalingsmetode | free |
Udvidelseswebsted | http://bit.ly/1NbxNzV |
Understøttede Sprog | 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\/" ] } |