Porgify
Replaces all images on all pages with images of Porg.
Apa itu Porgify?
Porgify adalah ekstensi Chrome yang dikembangkan oleh liamrosenfeld, dan fitur utamanya adalah "Replaces all images on all pages with images of Porg.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Porgify
Unduh file ekstensi Porgify dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
A chrome extension that replaces every image with one of porg GitHub Repo: https://github.com/liamrosenfeld/porgify
Informasi Dasar Ekstensi
Nama | |
ID | anohiacdcfnoceaialpnnbbdcecamfkl |
URL Resmi | https://chromewebstore.google.com/detail/porgify/anohiacdcfnoceaialpnnbbdcecamfkl |
Deskripsi | Replaces all images on all pages with images of Porg. |
Ukuran File | 523 KB |
Jumlah Instalasi | 75 |
Versi Saat Ini | 2.0.0 |
Terakhir Diperbarui | 2021-03-12 |
Tanggal Publikasi | 2018-04-16 |
Penilaian | 5.00/5 Total 10 Penilaian |
Pengembang | liamrosenfeld |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/liamrosenfeld/porgify |
URL Halaman Bantuan | https://github.com/liamrosenfeld/porgify/issues |
Bahasa yang Didukung | 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]" } } } |