Photo Screen Saver
A screensaver with multiple photo sources, including your Google Photos.
Photo Screen Saverคืออะไร?
Photo Screen Saver เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://opus1269.github.io/screensaver และคุณลักษณะหลักของมันคือ "A screensaver with multiple photo sources, including your Google Photos."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Photo Screen Saver
ดาวน์โหลดไฟล์ส่วนขยาย Photo Screen Saver ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension displays a screensaver composed of a slide show of photos from multiple sources. Supported photo sources include:
* Your Google Photos and Albums
Note: Albums shared by others are not supported
* Some background photos used by Chromecast
* Several sources from reddit
* Several sources from Unsplash
* Interesting photos from Flickr
Note: Photos from the local file system are not supported.
Many options are available to control the appearance of the slide show, including:
* Wait time after machine becomes idle to display screensaver
* Between photo time interval
* Photo display mode - (e.g., letterbox, fill screen)
* Photo transition animations - (e.g., fade, scale up)
* The "Ken Burns" effect with face detection
* A scheduler to control when the screensaver, display, and computer should remain on
* Do not display over full screen Chrome windows (e.g., YouTube, Netflix)
* Show on all displays
* Display current weather
* Display time
Works great on all platforms but may be especially useful for your Chromebook.
Please rate this if you find it of value. Thank you.
It is open source and advertising free.
Source code:
https://github.com/opus1269/screensaver
* Privacy Statement
https://opus1269.github.io/screensaver/PRIVACY.html ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | kohpcmlfdjfdggcjmjhhbcbankgmppgc |
| URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/photo-screen-saver/kohpcmlfdjfdggcjmjhhbcbankgmppgc |
| คำอธิบาย | A screensaver with multiple photo sources, including your Google Photos. |
| ขนาดไฟล์ | 787 KB |
| จำนวนการติดตั้ง | 20,000 |
| เวอร์ชันปัจจุบัน | 3.10.9 |
| อัปเดตครั้งล่าสุด | 2019-06-12 |
| วันที่เผยแพร่ | 2019-06-12 |
| คะแนน | 4.30/5 รวมทั้งหมด 531 คะแนน |
| ผู้พัฒนา | https://opus1269.github.io/screensaver |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://opus1269.github.io/screensaver/index.html |
| URL หน้าช่วยเหลือ | https://opus1269.github.io/screensaver/faq.html |
| ภาษาที่รองรับ | de,en-US,fr,nl,es,it |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "__MSG_chrome_extension_name__",
"short_name": "__MSG_chrome_extension_name__",
"description": "__MSG_chrome_extension_description__",
"version": "3.10.9",
"minimum_chrome_version": "38",
"default_locale": "en_US",
"commands": {
"show-screensaver": {
"description": "__MSG_display_now__"
},
"toggle-enabled": {
"suggested_key": {
"default": "Alt+Shift+Q"
},
"description": "__MSG_toggle_enabled__"
},
"ss-toggle-paused": {
"suggested_key": {
"default": "Alt+Shift+Space"
},
"description": "__MSG_ss_toggle_paused__"
},
"ss-back": {
"suggested_key": {
"default": "Alt+Shift+Left"
},
"description": "__MSG_ss_back__"
},
"ss-forward": {
"suggested_key": {
"default": "Alt+Shift+Right"
},
"description": "__MSG_ss_forward__"
}
},
"icons": {
"16": "\/images\/icon_16.png",
"32": "\/images\/icon_32.png",
"48": "\/images\/icon_48.png",
"128": "\/images\/icon_128.png"
},
"content_security_policy": "script-src 'self' https:\/\/www.googleapis.com https:\/\/apis.google.com\/ https:\/\/www.google-analytics.com; object-src 'self'",
"oauth2": {
"client_id": "595750713699-odrvm10qr3eua2nt2q9vre27bvbtvhe1.apps.googleusercontent.com",
"scopes": [
"https:\/\/www.googleapis.com\/auth\/photoslibrary.readonly"
]
},
"permissions": [
"identity",
"storage",
"unlimitedStorage",
"idle",
"power",
"system.display",
"alarms",
"contextMenus"
],
"optional_permissions": [
"background",
"https:\/\/photoslibrary.googleapis.com\/",
"https:\/\/api.openweathermap.org\/",
"https:\/\/*.googleusercontent.com\/",
"https:\/\/*.redd.it\/",
"https:\/\/live.staticflickr.com\/",
"https:\/\/images.unsplash.com\/"
],
"background": {
"persistent": false,
"page": "html\/background.html"
},
"browser_action": {
"default_title": "__MSG_browser_action_title__",
"16": "\/images\/icon_16.png",
"24": "\/images\/icon_24.png",
"32": "\/images\/icon_32.png"
},
"options_page": "\/html\/options.html"
} | |