Photo SlideShow

Turn Photos into a SlideShow!

O que é Photo SlideShow?

Photo SlideShow é uma extensão do Chrome desenvolvida por https://www.sermak.ca, e sua principal característica é "Turn Photos into a SlideShow!".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Photo SlideShow

Baixe arquivos de extensão Photo SlideShow 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

                        Turn your Chromebook, PC or Tablet into a Digital Photo Frame!

- Shrinks/Expands photos without displaying black bars!
- Allows user to set custom delay between each new photo.
- Able to run full screen or without changing your browser's view.
- Photos shown sequentially or randomly, while never missing a photo.
- Re-scan selected folder for photos on browser start or before the show.
- Set optional night mode (dim) during hours when nobody is watching.
- Swipe gestures during a slideshow, in order to rewind, stop, and more.

Security permissions that should be enabled for all the features:

"Allow access to file URLs" is required in order to display your photos.
"Optional access" will be requested when accessing a shared folder.

Supports Chrome, Opera, Vivaldi, and Edge (Chromium) browsers.                    

Informações Básicas da Extensão

Nome Photo SlideShow Photo SlideShow
ID alkcfedbkhjolgpgpnbnlaggfnkifhlb
URL Oficial https://chromewebstore.google.com/detail/photo-slideshow/alkcfedbkhjolgpgpnbnlaggfnkifhlb
Descrição Turn Photos into a SlideShow!
Tamanho do Arquivo 85.59 KB
Contagem de Instalações 338
Versão Atual 26.3
Última Atualização 2024-01-11
Data de Publicação 2023-11-11
Desenvolvedor https://www.sermak.ca
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://www.sermak.ca/
URL da Página de Política de Privacidade https://www.sermak.ca/Privacy.pdf
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "PSS"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "file:\/\/\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "description": "Turn Photos into a SlideShow!",
    "homepage_url": "https:\/\/sermak.ca",
    "icons": {
        "128": "slideshow.png"
    },
    "incognito": "split",
    "manifest_version": 2,
    "name": "Photo SlideShow",
    "options_page": "options.html",
    "permissions": [
        "storage"
    ],
    "optional_permissions": [
        ""
    ],
    "short_name": "PSS",
    "version": "26.3",
    "web_accessible_resources": [
        "*.html",
        "*.svg"
    ]
}