Force HighRes for Google Photos™
Force Google Photos to show image in highest resolution.
Apa itu Force HighRes for Google Photos™?
Force HighRes for Google Photos™ adalah ekstensi Chrome yang dikembangkan oleh Henry Lim, dan fitur utamanya adalah "Force Google Photos to show image in highest resolution.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Force HighRes for Google Photos™
Unduh file ekstensi Force HighRes for Google Photos™ dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
✨ 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
Informasi Dasar Ekstensi
Nama | Force HighRes for Google Photos™ |
ID | bpmamcafhaehfjfkchaeedfflboiilcd |
URL Resmi | https://chromewebstore.google.com/detail/force-highres-for-google/bpmamcafhaehfjfkchaeedfflboiilcd |
Deskripsi | Force Google Photos to show image in highest resolution. |
Ukuran File | 12.8 KB |
Jumlah Instalasi | 447 |
Versi Saat Ini | 0.0.2 |
Terakhir Diperbarui | 2019-09-22 |
Tanggal Publikasi | 2019-09-22 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | Henry Lim |
[email protected] | |
Tipe Pembayaran | free |
URL Halaman Kebijakan Privasi | https://policies.limhenry.xyz/slides |
Bahasa yang Didukung | 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" } } |