Porgify
Replaces all images on all pages with images of Porg.
什么是Porgify?
Porgify是由liamrosenfeld开发的Chrome扩展程序,该扩展的主要功能是“Replaces all images on all pages with images of Porg.”。
扩展截图
下载Porgify扩展crx文件
下载Porgify扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A chrome extension that replaces every image with one of porg
GitHub Repo:
https://github.com/liamrosenfeld/porgify 扩展基本信息
| 名称 | |
| ID | anohiacdcfnoceaialpnnbbdcecamfkl |
| 官方URL | https://chromewebstore.google.com/detail/porgify/anohiacdcfnoceaialpnnbbdcecamfkl |
| 简介 | Replaces all images on all pages with images of Porg. |
| 文件大小 | 523 KB |
| 安装次数 | 75 |
| 当前版本 | 2.0.0 |
| 更新时间 | 2021-03-12 |
| 上架时间 | 2018-04-16 |
| 评分 | 5.00/5 共10次评分 |
| 开发者 | liamrosenfeld |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/liamrosenfeld/porgify |
| 帮助页面URL | https://github.com/liamrosenfeld/porgify/issues |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"content_scripts": [
{
"js": [
"porgify\/porgify.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"run_at": "document_start",
"all_frames": false
}
],
"background": {
"scripts": [
"porgify\/bg.js"
]
},
"description": "__MSG_appDesc__",
"manifest_version": 2,
"name": "__MSG_appName__",
"short_name": "__MSG_appName__",
"version": "2.0.0",
"default_locale": "en",
"icons": {
"128": "porgify\/logo128.png",
"16": "porgify\/logo16.png"
},
"permissions": [
"storage",
"contextMenus",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"options_ui": {
"page": "porgify\/options\/options.html",
"chrome_style": true
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
}
} | |