SlideshowPlayer

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

SlideshowPlayerとは何ですか?

SlideshowPlayerはhttps://far.whochan.comによって開発されたChromeの拡張機能で、その主な機能は「Plays the slideshow with images which is linked from the page.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

SlideshowPlayer拡張機能のCRXファイルをダウンロード

SlideshowPlayer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.)                    

拡張機能の基本情報

名前 SlideshowPlayer SlideshowPlayer
ID geopiocdphdpmkapnceogppdcfjklhbj
公式URL https://chromewebstore.google.com/detail/slideshowplayer/geopiocdphdpmkapnceogppdcfjklhbj
説明 Plays the slideshow with images which is linked from the page.
ファイルサイズ 202 KB
インストール数 1,456
現在のバージョン 2.6.5
最終更新日 2017-12-19
公開日 2017-12-18
評価 3.57/5 合計 14 レビュー
開発者 https://far.whochan.com
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト http://far.whochan.com/wlog.cgi/SlideshowPlayer
ヘルプページのURL https://twitter.com/intent/tweet?screen_name=whochan_com&hashtags=SlideshowPlayer
プライバシーポリシーページのURL http://far.whochan.com/wlog.cgi/Privacy%20Policy
対応言語 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"
            ]
        }
    ]
}