gitphy
Put gifs in your Github issues and pull requests without leaving the textarea
Co je gitphy?
gitphy je rozšíření Chrome vyvinuté https://kevinformatics.com, a jeho hlavní funkcí je „Put gifs in your Github issues and pull requests without leaving the textarea“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření gitphy
Stáhněte si soubory rozšíření gitphy ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | gitphy |
ID | kbnbfpmphfpcndlokabhemafnjhkcffc |
Oficiální URL | https://chromewebstore.google.com/detail/gitphy/kbnbfpmphfpcndlokabhemafnjhkcffc |
Popis | Put gifs in your Github issues and pull requests without leaving the textarea |
Velikost souboru | 86.94 KB |
Počet instalací | 38 |
Aktuální Verze | 1.1.1 |
Poslední Aktualizace | 2020-10-15 |
Datum Vydání | 2020-07-24 |
Hodnocení | 5.00/5 Celkem 2 Hodnocení |
Vývojář | https://kevinformatics.com |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | http://kevinformatics.com/gitphy |
Podporované Jazyky | 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" ] } |