GitMeme
Easily add memes to your Github comments by simply typing a word after a forward slash, like /shipit
什麼是GitMeme?
GitMeme是由https://gitme.me開發的Chrome擴展程式,該擴展的主要功能是“Easily add memes to your Github comments by simply typing a word after a forward slash, like /shipit”。
擴展截圖
下載GitMeme擴展crx文件
下載GitMeme擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Gitmeme brings the fun back to Github. Seamlessly add GIFs and meme images to your pull request comments and descriptions by just typing a keyword. For example, type "/shipit" and a gif of a big ship is inserted, or "/goodjob" to let the developer know how awesome she is! Gitmeme integrates with Giphy to find you fun memes, and also builds a community of popular images. It remembers your favorite images, and you can add new images to really express yourself. It also remembers images made by others in your company or open source community, so you are suggested images from those around you, allowing for fun in-jokes on your team.
擴展基本資訊
名稱 | GitMeme |
ID | bjpibkoafohcjghgpbiinhfoobmbijcc |
官方網址 | https://chromewebstore.google.com/detail/gitmeme/bjpibkoafohcjghgpbiinhfoobmbijcc |
簡介 | Easily add memes to your Github comments by simply typing a word after a forward slash, like /shipit |
檔案大小 | 308 KB |
安裝次數 | 102 |
目前版本 | 2.2 |
更新時間 | 2023-12-03 |
上架時間 | 2019-11-12 |
評分 | 5.00/5 共 3 次評分 |
開發者 | https://gitme.me |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://gitme.me |
隱私政策頁面URL | https://chofter.com/privacy_policy.html |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitMeme", "version": "2.2", "description": "Easily add memes to your Github comments by simply typing a word after a forward slash, like \/shipit", "manifest_version": 3, "permissions": [ "activeTab", "identity", "storage" ], "host_permissions": [ "https:\/\/gitme.me\/*", "https:\/\/api.giphy.com\/" ], "content_scripts": [ { "matches": [ "https:\/\/*.github.com\/*", "https:\/\/github.com\/*", "https:\/\/git.musta.ch\/*" ], "css": [ "build\/style.css" ], "js": [ "build\/contentScript.js" ] } ], "action": { "default_popup": "popup\/index.html" }, "web_accessible_resources": [ { "resources": [ "assets\/selectedButton.png", "assets\/collapseButton.png", "assets\/expandButton.png", "assets\/icon-48x48.png", "popup\/index.html" ], "matches": [ "*:\/\/*\/*" ] } ], "minimum_chrome_version": "93", "background": { "service_worker": "build\/service_worker.js" }, "icons": { "16": "assets\/icon-16x16.png", "48": "assets\/icon-48x48.png", "128": "assets\/icon-128x128.png" }, "applications": { "gecko": { "id": "[email protected]" } } } |