Force HighRes for Google Photos™
Force Google Photos to show image in highest resolution.
Co to jest Force HighRes for Google Photos™?
Force HighRes for Google Photos™ to rozszerzenie Chrome opracowane przez Henry Lim, a jego główną funkcją jest „Force Google Photos to show image in highest resolution.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Force HighRes for Google Photos™
Pobierz pliki rozszerzeń Force HighRes for Google Photos™ w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
✨ 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
Podstawowe informacje o rozszerzeniu
Nazwa | Force HighRes for Google Photos™ |
ID | bpmamcafhaehfjfkchaeedfflboiilcd |
Oficjalny URL | https://chromewebstore.google.com/detail/force-highres-for-google/bpmamcafhaehfjfkchaeedfflboiilcd |
Opis | Force Google Photos to show image in highest resolution. |
Rozmiar pliku | 12.8 KB |
Liczba instalacji | 447 |
Aktualna Wersja | 0.0.2 |
Ostatnia Aktualizacja | 2019-09-22 |
Data Publikacji | 2019-09-22 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | Henry Lim |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Polityki Prywatności | https://policies.limhenry.xyz/slides |
Obsługiwane Języki | 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" } } |