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 |
官方網址 | 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]" } } } |