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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 } |