Force HighRes for Google Photos™
Force Google Photos to show image in highest resolution.
Qu'est-ce que Force HighRes for Google Photos™ ?
Force HighRes for Google Photos™ est une extension Chrome développée par Henry Lim, et sa fonction principale est "Force Google Photos to show image in highest resolution.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Force HighRes for Google Photos™
Téléchargez les fichiers d'extension Force HighRes for Google Photos™ au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
✨ 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
Informations de Base sur l'Extension
Nom | Force HighRes for Google Photos™ |
ID | bpmamcafhaehfjfkchaeedfflboiilcd |
URL Officiel | https://chromewebstore.google.com/detail/force-highres-for-google/bpmamcafhaehfjfkchaeedfflboiilcd |
Description | Force Google Photos to show image in highest resolution. |
Taille du Fichier | 12.8 KB |
Nombre d'Installations | 447 |
Version Actuelle | 0.0.2 |
Dernière Mise à Jour | 2019-09-22 |
Date de Publication | 2019-09-22 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Henry Lim |
[email protected] | |
Type de Paiement | free |
URL de la Page de Politique de Confidentialité | https://policies.limhenry.xyz/slides |
Langues Prises en Charge | 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" } } |