Gistify
This extension searches for gist URLs in a page and replaces them with embedded gists.
Vad är Gistify?
Gistify är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "This extension searches for gist URLs in a page and replaces them with embedded gists.".
Tilläggsskärmbilder
Ladda ner Gistify-förlängningens CRX-fil
Ladda ner Gistify-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
| Namn | |
| ID | bjapmncmmhnhbfkfaopdajhmhccfhonm |
| Officiell webbadress | https://chromewebstore.google.com/detail/gistify/bjapmncmmhnhbfkfaopdajhmhccfhonm |
| Beskrivning | This extension searches for gist URLs in a page and replaces them with embedded gists. |
| Filstorlek | 40.31 KB |
| Antal Installationer | 17 |
| Aktuell Version | 1.0 |
| Senast Uppdaterad | 2016-02-26 |
| Publiceringsdatum | 2016-02-26 |
| Betyg | 4.83/5 Totalt 6 Betyg |
| Utvecklare | Unknown |
| Betalningssätt | free |
| Tilläggswebbplats | http://bit.ly/1NbxNzV |
| Stödda Språk | 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\/"
]
} | |