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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | 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]" } } } |