EZTM
Chrome extension that helps you to do LGTM with fancy gifs.
什么是EZTM?
EZTM是由kakudenbuzou开发的Chrome扩展程序,该扩展的主要功能是“Chrome extension that helps you to do LGTM with fancy gifs.”。
扩展截图
下载EZTM扩展crx文件
下载EZTM扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension helps you do LGTM with fancy gifs on GitHub. # How to use 1. Focus on text area. 2. Right click to show context menu. 3. Click "Insert LGTM gif". 4. That's it! "shift + cmd + v" is a shortcut command to insert LGTM gif. You can change the command if you want. (chrome://extensions/shortcuts)
扩展基本信息
名称 | EZTM |
ID | pilidjngjpaijlblpfdncckldgecngak |
官方URL | https://chromewebstore.google.com/detail/eztm/pilidjngjpaijlblpfdncckldgecngak |
简介 | Chrome extension that helps you to do LGTM with fancy gifs. |
文件大小 | 7.89 KB |
安装次数 | 32 |
当前版本 | 0.1.0 |
更新时间 | 2023-01-14 |
上架时间 | 2022-11-23 |
开发者 | kakudenbuzou |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/kakudenbuzo/eztm |
帮助页面URL | https://github.com/kakudenbuzo/eztm |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "EZTM", "description": "Chrome extension that helps you to do LGTM with fancy gifs.", "version": "0.1.0", "icons": { "16": "image\/icon16.png", "48": "image\/icon48.png", "128": "image\/icon128.png" }, "permissions": [ "contextMenus" ], "background": { "service_worker": "js\/background.js" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "run_at": "document_idle", "all_frames": true, "js": [ "js\/contentScript.js" ] } ], "commands": { "closeSidebar": { "suggested_key": { "default": "Ctrl+Shift+V" }, "description": "Insert LGTM gif" } } } |