Force HighRes for Google Photos™
Force Google Photos to show image in highest resolution.
What is Force HighRes for Google Photos™?
Force HighRes for Google Photos™ is a Chrome extension developed by Henry Lim, and its main feature is "Force Google Photos to show image in highest resolution.".
Extension Screenshots
Download Force HighRes for Google Photos™ Extension CRX File
Download Force HighRes for Google Photos™ extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
✨ 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
Extension Basic Information
Name | Force HighRes for Google Photos™ |
ID | bpmamcafhaehfjfkchaeedfflboiilcd |
Official URL | https://chromewebstore.google.com/detail/force-highres-for-google/bpmamcafhaehfjfkchaeedfflboiilcd |
Description | Force Google Photos to show image in highest resolution. |
File Size | 12.8 KB |
Installation Count | 447 |
Current Version | 0.0.2 |
Last Updated | 2019-09-22 |
Publish Date | 2019-09-22 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Henry Lim |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://policies.limhenry.xyz/slides |
Supported Languages | 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" } } |