Force HighRes for Google Photos™
Force Google Photos to show image in highest resolution.
Force HighRes for Google Photos™คืออะไร?
Force HighRes for Google Photos™ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Henry Lim และคุณลักษณะหลักของมันคือ "Force Google Photos to show image in highest resolution."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Force HighRes for Google Photos™
ดาวน์โหลดไฟล์ส่วนขยาย Force HighRes for Google Photos™ ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
✨ FEATURES ✔️ Toggle between original resolution (high resolution) and lower resolution (based on screen height). 🎁 DONATE PayPal: https://bit.ly/slides-donate 👨🏼💻 SOURCE CODE GitHub: https://github.com/limhenry/google-photos-force-highres
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Force HighRes for Google Photos™ |
ID | bpmamcafhaehfjfkchaeedfflboiilcd |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/force-highres-for-google/bpmamcafhaehfjfkchaeedfflboiilcd |
คำอธิบาย | Force Google Photos to show image in highest resolution. |
ขนาดไฟล์ | 12.8 KB |
จำนวนการติดตั้ง | 447 |
เวอร์ชันปัจจุบัน | 0.0.2 |
อัปเดตครั้งล่าสุด | 2019-09-22 |
วันที่เผยแพร่ | 2019-09-22 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Henry Lim |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้านโยบายความเป็นส่วนตัว | https://policies.limhenry.xyz/slides |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Force HighRes for Google Photos\u2122", "version": "0.0.2", "offline_enabled": true, "description": "Force Google Photos to show image in highest resolution.", "short_name": "Force HighRes for Google Photos\u2122", "content_scripts": [ { "matches": [ "https:\/\/photos.google.com\/*" ], "js": [ "content.js" ], "run_at": "document_idle", "all_frames": false } ], "permissions": [ "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "icons": { "16": "images\/logo_16.png", "48": "images\/logo_48.png", "128": "images\/logo_128.png" } } |