SlideshowPlayer

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

SlideshowPlayer क्या है?

SlideshowPlayer https://far.whochan.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Plays the slideshow with images which is linked from the page."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में SlideshowPlayer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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"
            ]
        }
    ]
}