Gistify
This extension searches for gist URLs in a page and replaces them with embedded gists.
What is Gistify?
Gistify is a Chrome extension developed by Unknown, and its main feature is "This extension searches for gist URLs in a page and replaces them with embedded gists.".
Extension Screenshots
Download Gistify Extension CRX File
Download Gistify extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Gistify |
ID | bjapmncmmhnhbfkfaopdajhmhccfhonm |
Official URL | https://chromewebstore.google.com/detail/gistify/bjapmncmmhnhbfkfaopdajhmhccfhonm |
Description | This extension searches for gist URLs in a page and replaces them with embedded gists. |
File Size | 40.31 KB |
Installation Count | 17 |
Current Version | 1.0 |
Last Updated | 2016-02-26 |
Publish Date | 2016-02-26 |
Rating | 4.83/5 Total 6 Ratings |
Developer | Unknown |
Payment Type | free |
Extension Website | http://bit.ly/1NbxNzV |
Supported Languages | 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\/" ] } |