gitphy
Put gifs in your Github issues and pull requests without leaving the textarea
Τι είναι το gitphy;
Το gitphy είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://kevinformatics.com, και η κύρια λειτουργία του είναι "Put gifs in your Github issues and pull requests without leaving the textarea".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης gitphy
Λήψη αρχείων επέκτασης gitphy σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Extends the markdown image syntax by allowing you to search for gifs right from Github textareas. Use the syntax ![](gif:) to search Giphy for gifs. Open source at: https://github.com/kevinwuhoo/gitphy.
Βασικές Πληροφορίες Επέκτασης
Όνομα | gitphy |
ID | kbnbfpmphfpcndlokabhemafnjhkcffc |
Επίσημο URL | https://chromewebstore.google.com/detail/gitphy/kbnbfpmphfpcndlokabhemafnjhkcffc |
Περιγραφή | Put gifs in your Github issues and pull requests without leaving the textarea |
Μέγεθος Αρχείου | 86.94 KB |
Αριθμός Εγκαταστάσεων | 38 |
Τρέχουσα Έκδοση | 1.1.1 |
Τελευταία Ενημέρωση | 2020-10-15 |
Ημερομηνία Δημοσίευσης | 2020-07-24 |
Αξιολόγηση | 5.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | https://kevinformatics.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | http://kevinformatics.com/gitphy |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "gitphy", "version": "1.1.1", "manifest_version": 2, "description": "Put gifs in your Github issues and pull requests without leaving the textarea", "author": "Kevin Wu", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "css": [ "index.css" ], "js": [ "index.js" ], "run_at": "document_end" } ], "permissions": [ "https:\/\/github.com\/*", "https:\/\/*.giphy.com\/*" ], "web_accessible_resources": [ "giphy-attribution.png" ] } |