viRoomie

Open viRooms directly from your supported video website like YouTube and share the viRoom you are in with friends.

Τι είναι το viRoomie;

Το viRoomie είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://app.viroomie.com, και η κύρια λειτουργία του είναι "Open viRooms directly from your supported video website like YouTube and share the viRoom you are in with friends.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης viRoomie

Λήψη αρχείων επέκτασης viRoomie σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Easy solution to quickly open videos in viRoomie - and then watch it with friends and family across all borders completely synchronized.

Start a video on youtube.com or nlv.bittubes.com and the viRoomie icon appears in your browser bar. Click on it to get it into viRoomie.

Extension's source code is available on GitHub:
https://github.com/BitTubes/viRoomie-extension

---------
*v1.5.3/v1.5.4:
- full support for ARD Mediathek, improved support for RBB
*v1.5.2:
- translations
*v1.5.1:
- Major bugfixes for Netflix + Maxdome
*v1.5.0:
- RBB Mediathek added 
*v1.4.4+5:
- bugfixes 
*v1.4.3: 
- added UI for nick change in Netflix and Maxdome
*v1.4.2: 
- Design overhaul
*v1.4.1: 
- now fully supports Maxdome.de
*v1.3.3:
- now supports Netflix.com (still in beta, issues caused by slow buffering)                    

Βασικές Πληροφορίες Επέκτασης

Όνομα viRoomie viRoomie
ID bgmhagomiggapbbelnliledgcdigceej
Επίσημο URL https://chrome.google.com/webstore/detail/viroomie/bgmhagomiggapbbelnliledgcdigceej
Περιγραφή Open viRooms directly from your supported video website like YouTube and share the viRoom you are in with friends.
Μέγεθος Αρχείου 61.33 KB
Αριθμός Εγκαταστάσεων 19
Τρέχουσα Έκδοση 1.5.4
Τελευταία Ενημέρωση 2015-10-08
Ημερομηνία Δημοσίευσης 2015-10-08
Προγραμματιστής http://app.viroomie.com
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://viroomie.com
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/BitTubes/viRoomie-extension
Υποστηριζόμενες Γλώσσες de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_application_title__",
    "short_name": "__MSG_application_title__",
    "description": "__MSG_application_description__",
    "version": "1.5.4",
    "default_locale": "en",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png",
        "256": "img\/icon256.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": {
            "19": "img\/icon19.png",
            "38": "img\/icon38.png"
        },
        "default_popup": "popup.html",
        "default_title": "__MSG_application_title__"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.ardmediathek.de\/*",
                "*:\/\/mediathek.daserste.de\/*",
                "*:\/\/mediathek.rbb-online.de\/tv\/*"
            ],
            "js": [
                "content_script_ardmediathek.js"
            ],
            "css": [
                "content_script_external.css"
            ]
        },
        {
            "matches": [
                "http:\/\/www.netflix.com\/*",
                "*:\/\/*.maxdome.de\/*"
            ],
            "js": [
                "content_script_external.js"
            ],
            "css": [
                "content_script_external.css"
            ]
        },
        {
            "matches": [
                "*:\/\/app.viroomie.com\/*"
            ],
            "js": [
                "content_script_viroomie.js"
            ]
        },
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content_script_yt.js"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/www.ardmediathek.de\/*",
            "*:\/\/mediathek.daserste.de\/*",
            "*:\/\/mediathek.rbb-online.de\/tv\/*",
            "http:\/\/www.netflix.com\/watch\/*",
            "http:\/\/play.maxdome.de\/webplayer\/*",
            "*:\/\/app.viroomie.com\/*"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "tabs",
        "*:\/\/www.ardmediathek.de\/*",
        "*:\/\/mediathek.daserste.de\/*",
        "*:\/\/mediathek.rbb-online.de\/tv\/*",
        "*:\/\/www.youtube.com\/*",
        "http:\/\/www.netflix.com\/*",
        "*:\/\/*.maxdome.de\/*",
        "*:\/\/app.viroomie.com\/*"
    ]
}