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 |
官方網址 | 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" ] } |