Porgify
Replaces all images on all pages with images of Porg.
Porgifyคืออะไร?
Porgify เป็นส่วนขยายของ Chrome ที่พัฒนาโดย liamrosenfeld และคุณลักษณะหลักของมันคือ "Replaces all images on all pages with images of Porg."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Porgify
ดาวน์โหลดไฟล์ส่วนขยาย 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]" } } } |