Force HighRes for Google Photos™
Force Google Photos to show image in highest resolution.
Что такое Force HighRes for Google Photos™?
Force HighRes for Google Photos™ - это расширение Chrome, разработанное Henry Lim, и его основная функция - "Force Google Photos to show image in highest resolution.".
Снимки экрана расширения
Скачать файл CRX расширения Force HighRes for Google Photos™
Скачайте файлы расширений Force HighRes for Google Photos™ в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
✨ 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 Основная информация о расширении
| Название | |
| ID | bpmamcafhaehfjfkchaeedfflboiilcd |
| Официальный URL | https://chromewebstore.google.com/detail/force-highres-for-google/bpmamcafhaehfjfkchaeedfflboiilcd |
| Описание | Force Google Photos to show image in highest resolution. |
| Размер файла | 12.8 KB |
| Количество установок | 447 |
| Текущая Версия | 0.0.2 |
| Последнее Обновление | 2019-09-22 |
| Дата публикации | 2019-09-22 |
| Рейтинг | 5.00/5 Всего 1 оценок |
| Разработчик | Henry Lim |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| URL страницы политики конфиденциальности | https://policies.limhenry.xyz/slides |
| Поддерживаемые языки | 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"
}
} | |