SlideshowPlayer

Plays the slideshow with images which is linked from the page.

What is SlideshowPlayer?

SlideshowPlayer is a Chrome extension developed by https://far.whochan.com, and its main feature is "Plays the slideshow with images which is linked from the page.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download SlideshowPlayer Extension CRX File

Download SlideshowPlayer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This extension plays the slideshow with images which is linked from the page. 

= ##### W A R N I N G #####

This extension judges address of the links of the images using LinkFilterAPI on LinkRedirector. If you use this, you MUST install LinkRedirector.

= Usage

== Slideshow

The extension popup is the controller. Slideshow will be played when you click the play button.

= Album (New!)

If you click the recording button which is shown when you hover over an image, then record the image. Or if you click the recording button on the controller, then slideshow is played and all images shown will be recorded automatically.

Recorded images are able to play per album.

(It records address, but not record actual images. The function of recording actual images will be implemented if the File I/O API was implemented.)                    

Extension Basic Information

Name SlideshowPlayer SlideshowPlayer
ID geopiocdphdpmkapnceogppdcfjklhbj
Official URL https://chromewebstore.google.com/detail/slideshowplayer/geopiocdphdpmkapnceogppdcfjklhbj
Description Plays the slideshow with images which is linked from the page.
File Size 202 KB
Installation Count 1,456
Current Version 2.6.5
Last Updated 2017-12-19
Publish Date 2017-12-18
Rating 3.57/5 Total 14 Ratings
Developer https://far.whochan.com
Email [email protected]
Payment Type free
Extension Website http://far.whochan.com/wlog.cgi/SlideshowPlayer
Help Page URL https://twitter.com/intent/tweet?screen_name=whochan_com&hashtags=SlideshowPlayer
Privacy Policy Page URL http://far.whochan.com/wlog.cgi/Privacy%20Policy
Supported Languages en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SlideshowPlayer",
    "version": "2.6.5",
    "manifest_version": 2,
    "default_locale": "en",
    "description": "__MSG_DESCRIPTION__",
    "homepage_url": "http:\/\/far.whochan.com\/",
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon96.png"
    },
    "background": {
        "page": "index.html"
    },
    "options_ui": {
        "chrome_style": false,
        "open_in_tab": true,
        "page": "options.html"
    },
    "page_action": {
        "default_title": "SlideshowPlayer",
        "default_icon": "buttons\/disabled.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "notifications",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs"
    ],
    "web_accessible_resources": [
        "configurations\/clientlang.json",
        "locales\/*\/configurations\/clientlang.json"
    ],
    "content_scripts": [
        {
            "run_at": "document_idle",
            "all_frames": false,
            "matches": [
                ""
            ],
            "js": [
                "lib\/WHO.extension.client.js",
                "includes\/api.LinkFilter.js",
                "includes\/usoCommon.js",
                "includes\/0.SlideshowPlayer.js",
                "includes\/usoSlideshowPlayer.js",
                "includes\/usoRecordImages.js"
            ]
        }
    ]
}