Force HighRes for Google Photos™
Force Google Photos to show image in highest resolution.
Cos'è Force HighRes for Google Photos™?
Force HighRes for Google Photos™ è un'estensione di Chrome sviluppata da Henry Lim, e la sua funzione principale è "Force Google Photos to show image in highest resolution.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Force HighRes for Google Photos™
Scarica i file di estensione Force HighRes for Google Photos™ in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
✨ 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
Informazioni di Base sull'Estensione
Nome | Force HighRes for Google Photos™ |
ID | bpmamcafhaehfjfkchaeedfflboiilcd |
URL Ufficiale | https://chromewebstore.google.com/detail/force-highres-for-google/bpmamcafhaehfjfkchaeedfflboiilcd |
Descrizione | Force Google Photos to show image in highest resolution. |
Dimensione del File | 12.8 KB |
Conteggio Installazioni | 447 |
Versione Corrente | 0.0.2 |
Ultimo Aggiornamento | 2019-09-22 |
Data di Pubblicazione | 2019-09-22 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Henry Lim |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | https://policies.limhenry.xyz/slides |
Lingue Supportate | 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" } } |