Kassi Share - Send to Kodi

Send videos to Kodi Media Center

Kassi Share - Send to Kodi क्या है?

Kassi Share - Send to Kodi g0ld3nrati0 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Send videos to Kodi Media Center"।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Send videos to Kodi media center. "Play Now" and "Add to Queue" links are placed in context menu.

Supported websites:

- Crunchyroll (Premium membership needed)
- err.ee (etv, etv2, etv+)
- Facebook.com
- Postimees.ee
- tv3play.tv3.ee
- Twitch.tv
- Vimeo.com
- Youtube.com
- HTML video tags (non-blob URLs)

Features:
1. "Play Now" and "Add to Queue" links are placed conveniently in the context menu.
2. Performs connection test when host is configured.
3. Supports playlist.

Source code available on Github,
https://github.com/goldenratio/youtube-to-XBMC                    

एक्सटेंशन की मूल जानकारी

नाम Kassi Share - Send to Kodi Kassi Share - Send to Kodi
ID gbghegmimhjemkhpimohkdopkeahldbh
आधिकारिक URL https://chromewebstore.google.com/detail/kassi-share-send-to-kodi/gbghegmimhjemkhpimohkdopkeahldbh
विवरण Send videos to Kodi Media Center
फ़ाइल का आकार 74.22 KB
स्थापना संख्या 2,284
वर्तमान संस्करण 5.3
अंतिम अपडेट 2017-10-11
प्रकाशन तिथि 2017-10-11
रेटिंग 4.50/5 कुल 46 रेटिंग्स
डेवलपर g0ld3nrati0
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/goldenratio/youtube-to-XBMC
सहायता पृष्ठ URL https://github.com/goldenratio/youtube-to-XBMC/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Kassi Share - Send to Kodi",
    "description": "Send videos to Kodi Media Center",
    "version": "5.3",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "tabs",
        "contextMenus"
    ],
    "icons": {
        "16": "assets\/icon_16.png",
        "48": "assets\/icon_48.png",
        "128": "assets\/icon_128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "assets\/icon_19.png",
            "38": "assets\/icon_38.png"
        },
        "default_title": "Kassi Share",
        "default_popup": "action_popup.html"
    },
    "background": {
        "scripts": [
            "js\/sprintf.js",
            "js\/enums.js",
            "js\/shared.js",
            "js\/background_scripts\/context_menu.js",
            "js\/background_scripts\/player.js",
            "js\/background_scripts\/browser_action.js",
            "js\/background_scripts\/main.js",
            "js\/background_scripts\/message_handlers.js",
            "js\/background_scripts\/sites\/abstract_site.js",
            "js\/background_scripts\/sites\/youtube.com.js",
            "js\/background_scripts\/sites\/vimeo.com.js",
            "js\/background_scripts\/sites\/err.ee.js",
            "js\/background_scripts\/sites\/twitch.tv.js",
            "js\/background_scripts\/sites\/facebook.com.js",
            "js\/background_scripts\/sites\/postimees.ee.js",
            "js\/background_scripts\/sites\/crunchyroll.com.js",
            "js\/background_scripts\/sites\/tv3play.js",
            "js\/background_scripts\/sites\/ted.com.js",
            "js\/background_scripts\/sites\/dailymotion.com.js",
            "js\/background_scripts\/sites\/default.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "css\/iziToast.css"
            ],
            "js": [
                "js\/content_scripts\/iziToast.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content_scripts\/sites\/default.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "js\/content_scripts\/sites\/twitch.tv.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*.facebook.com\/*"
            ],
            "js": [
                "js\/content_scripts\/sites\/facebook.com.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*.postimees.ee\/*"
            ],
            "js": [
                "js\/content_scripts\/sites\/postimees.ee.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*.tv3play.tv3.ee\/sisu\/*"
            ],
            "js": [
                "js\/content_scripts\/sites\/tv3play.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*.ted.com\/talks\/*"
            ],
            "js": [
                "js\/content_scripts\/sites\/ted.com.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "options_page": "settings.html",
    "short_name": "Kassi Share"
}