Gistify
This extension searches for gist URLs in a page and replaces them with embedded gists.
Τι είναι το Gistify;
Το Gistify είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Unknown, και η κύρια λειτουργία του είναι "This extension searches for gist URLs in a page and replaces them with embedded gists.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Gistify
Λήψη αρχείων επέκτασης Gistify σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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
Βασικές Πληροφορίες Επέκτασης
Όνομα | Gistify |
ID | bjapmncmmhnhbfkfaopdajhmhccfhonm |
Επίσημο URL | https://chromewebstore.google.com/detail/gistify/bjapmncmmhnhbfkfaopdajhmhccfhonm |
Περιγραφή | This extension searches for gist URLs in a page and replaces them with embedded gists. |
Μέγεθος Αρχείου | 40.31 KB |
Αριθμός Εγκαταστάσεων | 17 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2016-02-26 |
Ημερομηνία Δημοσίευσης | 2016-02-26 |
Αξιολόγηση | 4.83/5 Συνολικά 6 Αξιολογήσεις |
Προγραμματιστής | Unknown |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | http://bit.ly/1NbxNzV |
Υποστηριζόμενες Γλώσσες | 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\/" ] } |