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 |
| Eメール | [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]"
}
}
} | |