Force HighRes for Google Photos™
Force Google Photos to show image in highest resolution.
什麼是Force HighRes for Google Photos™?
Force HighRes for Google Photos™是由Henry Lim開發的Chrome擴展程式,該擴展的主要功能是“Force Google Photos to show image in highest resolution.”。
擴展截圖
下載Force HighRes for Google Photos™擴展crx文件
下載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 |
| 官方網址 | 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"
}
} | |