gitphy
Put gifs in your Github issues and pull requests without leaving the textarea
什么是gitphy?
gitphy是由https://kevinformatics.com开发的Chrome扩展程序,该扩展的主要功能是“Put gifs in your Github issues and pull requests without leaving the textarea”。
扩展截图
下载gitphy扩展crx文件
下载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" ] } |