GitHub Selfies
Selfies! For GitHub! Hooray!
什么是GitHub Selfies?
GitHub Selfies是由github-selfies-maintainers开发的Chrome扩展程序,该扩展的主要功能是“Selfies! For GitHub! Hooray!”。
扩展截图
下载GitHub Selfies扩展crx文件
下载GitHub Selfies扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
GitHub Selfies allows you to easily insert selfies into your pull requests, issues, and comments from your webcam! Just one click and you'll be happily spamming your coworkers and fellow open source contributors with way too many pictures of your glorious mug.
扩展基本信息
名称 | GitHub Selfies |
ID | ldnpkdnkgkogfnahcnldaedcoadjbkbl |
官方URL | https://chromewebstore.google.com/detail/github-selfies/ldnpkdnkgkogfnahcnldaedcoadjbkbl |
简介 | Selfies! For GitHub! Hooray! |
文件大小 | 65.13 KB |
安装次数 | 381 |
当前版本 | 2.0.7 |
更新时间 | 2020-07-12 |
上架时间 | 2018-12-29 |
评分 | 4.67/5 共24次评分 |
开发者 | github-selfies-maintainers |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/thieman/github-selfies |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GitHub Selfies", "description": "Selfies! For GitHub! Hooray!", "version": "2.0.7", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "webRequest", "webRequestBlocking", "*:\/\/github.com\/*", "https:\/\/api.imgur.com\/3\/image" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "js": [ "jquery.min.js", "b64.js", "NeuQuant.js", "LZWEncoder.js", "GIFEncoder.js", "selfie-base.js", "selfie.js" ], "css": [ "selfie.css" ], "matches": [ "*:\/\/github.com\/*" ] } ], "web_accessible_resources": [ "jquery-1.10.1.min.map", "new-issue.css", "issues.css" ] } |