Force HighRes for Google Photos™
Force Google Photos to show image in highest resolution.
Wat is Force HighRes for Google Photos™?
Force HighRes for Google Photos™ is een Chrome-extensie ontwikkeld door Henry Lim, en de belangrijkste functie is "Force Google Photos to show image in highest resolution.".
Extensie Screenshots
Download het CRX-bestand van de extensie Force HighRes for Google Photos™
Download Force HighRes for Google Photos™-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
✨ 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
Basisinformatie over de Extensie
Naam | Force HighRes for Google Photos™ |
ID | bpmamcafhaehfjfkchaeedfflboiilcd |
Officiële URL | https://chromewebstore.google.com/detail/force-highres-for-google/bpmamcafhaehfjfkchaeedfflboiilcd |
Beschrijving | Force Google Photos to show image in highest resolution. |
Bestandsgrootte | 12.8 KB |
Aantal Installaties | 447 |
Huidige Versie | 0.0.2 |
Laatst Bijgewerkt | 2019-09-22 |
Publicatiedatum | 2019-09-22 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Henry Lim |
[email protected] | |
Betalingswijze | free |
URL van de Privacybeleid Pagina | https://policies.limhenry.xyz/slides |
Ondersteunde Talen | 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" } } |