Centered Image Files for Chrome
Centers the image on the page when a image file is viewed in Chrome.
ما هو Centered Image Files for Chrome؟
Centered Image Files for Chrome هو إضافة Chrome تم تطويرها بواسطة JG، والميزة الرئيسية لها هي "Centers the image on the page when a image file is viewed in Chrome.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Centered Image Files for Chrome
قم بتنزيل ملفات الامتداد Centered Image Files for Chrome بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
When you open an image file in Chrome, the browser displays the image in the top-left corner of the screen by default. This extension simply makes the browser display the image in the center of the screen so that you do not have to redirect your focus to view it. An example before/after is shown in the screenshots. Or to demonstrate the effect yourself, open the image at the below link with and without the extension enabled. https://www.youtube.com/yt/brand/media/image/YouTube-logo-full_color.png This extension works on files with urls that end with common image file extensions such as .png, .jpeg, .gif. It does not affect .html files.
معلومات أساسية عن التمديد
الاسم | |
ID | fineoicodbjnolpojmadechmnegedgko |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/centered-image-files-for/fineoicodbjnolpojmadechmnegedgko |
الوصف | Centers the image on the page when a image file is viewed in Chrome. |
حجم الملف | 10.14 KB |
عدد التثبيتات | 42 |
النسخة الحالية | 0.1.0 |
آخر تحديث | 2015-05-25 |
تاريخ النشر | 2015-05-25 |
تقييم | 4.50/5 مجموع تقييمات 2 |
المطور | JG |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Centered Image Files for Chrome", "short_name": "Centered Images", "description": "Centers the image on the page when a image file is viewed in Chrome.", "version": "0.1.0", "icons": { "16": "res\/center_16.png", "32": "res\/center_32.png", "48": "res\/center_48.png", "128": "res\/center_128.png" }, "permissions": [ "activeTab" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*.png", "*:\/\/*\/*.jpeg", "*:\/\/*\/*.jpg", "*:\/\/*\/*.gif", "*:\/\/*\/*.tif", "*:\/\/*\/*.tiff", "*:\/\/*\/*.bmp" ], "css": [ "center.css" ] } ], "manifest_version": 2 } |