Pixelate
Toggle pixel-perfect image rendering on webpages and files
ما هو Pixelate؟
Pixelate هو إضافة Chrome تم تطويرها بواسطة Rohan Adiyodi، والميزة الرئيسية لها هي "Toggle pixel-perfect image rendering on webpages and files".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Pixelate
قم بتنزيل ملفات الامتداد Pixelate بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
---------------------------------------------------------------------------------------- Have you ever zoomed in on pixel art in Chrome, only to find it extremely blurry? This extension offers the ability to quickly enable or disable pixel-perfect image rendering to maintain sharp pixels when zooming in. It is comparable to the nearest-neighbor interpolation option in most graphics programs. Supports images on websites and individual image files opened in Chrome (local and web). To enable for local files, activate the "Allow access to file URLs" option in the extension settings. *Note: Not supported for images on the Chrome Web Store or in Chrome settings menus.
معلومات أساسية عن التمديد
الاسم | Pixelate |
ID | ffmgnhmbppbhmhnehfjelgnbcbaehofe |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/pixelate/ffmgnhmbppbhmhnehfjelgnbcbaehofe |
الوصف | Toggle pixel-perfect image rendering on webpages and files |
حجم الملف | 7.25 KB |
عدد التثبيتات | 703 |
النسخة الحالية | 1.0.2 |
آخر تحديث | 2020-01-09 |
تاريخ النشر | 2020-01-04 |
تقييم | 4.40/5 مجموع تقييمات 5 |
المطور | Rohan Adiyodi |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Pixelate", "version": "1.0.2", "description": "Toggle pixel-perfect image rendering on webpages and files", "permissions": [ "activeTab", "declarativeContent", "storage" ], "commands": { "toggle": { "suggested_key": { "default": "Ctrl+Shift+X" }, "description": "Toggle pixel-perfect", "global": true } }, "background": { "scripts": [ "background.js", "toggle.js" ], "persistent": false }, "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" } }, "icons": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" }, "manifest_version": 2, "web_accessible_resources": [ "style.css" ] } |