Porgify
Replaces all images on all pages with images of Porg.
What is Porgify?
Porgify is a Chrome extension developed by liamrosenfeld, and its main feature is "Replaces all images on all pages with images of Porg.".
Extension Screenshots
Download Porgify Extension CRX File
Download Porgify extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
A chrome extension that replaces every image with one of porg GitHub Repo: https://github.com/liamrosenfeld/porgify
Extension Basic Information
Name | |
ID | anohiacdcfnoceaialpnnbbdcecamfkl |
Official URL | https://chromewebstore.google.com/detail/porgify/anohiacdcfnoceaialpnnbbdcecamfkl |
Description | Replaces all images on all pages with images of Porg. |
File Size | 523 KB |
Installation Count | 75 |
Current Version | 2.0.0 |
Last Updated | 2021-03-12 |
Publish Date | 2018-04-16 |
Rating | 5.00/5 Total 10 Ratings |
Developer | liamrosenfeld |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/liamrosenfeld/porgify |
Help Page URL | https://github.com/liamrosenfeld/porgify/issues |
Supported Languages | 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]" } } } |