Force HighRes for Google Photos™
Force Google Photos to show image in highest resolution.
O que é Force HighRes for Google Photos™?
Force HighRes for Google Photos™ é uma extensão do Chrome desenvolvida por Henry Lim, e sua principal característica é "Force Google Photos to show image in highest resolution.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Force HighRes for Google Photos™
Baixe arquivos de extensão Force HighRes for Google Photos™ no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
✨ 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 Informações Básicas da Extensão
| Nome | |
| ID | bpmamcafhaehfjfkchaeedfflboiilcd |
| URL Oficial | https://chromewebstore.google.com/detail/force-highres-for-google/bpmamcafhaehfjfkchaeedfflboiilcd |
| Descrição | Force Google Photos to show image in highest resolution. |
| Tamanho do Arquivo | 12.8 KB |
| Contagem de Instalações | 447 |
| Versão Atual | 0.0.2 |
| Última Atualização | 2019-09-22 |
| Data de Publicação | 2019-09-22 |
| Classificação | 5.00/5 Total de 1 Avaliações |
| Desenvolvedor | Henry Lim |
| [email protected] | |
| Tipo de Pagamento | free |
| URL da Página de Política de Privacidade | https://policies.limhenry.xyz/slides |
| Idiomas Suportados | 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"
}
} | |