PlayIt on XBMC

PlayIt on XBMC sends selected URL to PlayIt service add-on installed on XBMC that resolves link to video and play/queue in player.

Τι είναι το PlayIt on XBMC;

Το PlayIt on XBMC είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον ajdeveloped, και η κύρια λειτουργία του είναι "PlayIt on XBMC sends selected URL to PlayIt service add-on installed on XBMC that resolves link to video and play/queue in player.".

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

screenshot

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

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

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

                        A new exciting way to play videos on your favorite media player XBMC. 

How it works:
Sends a URL to PlayIt service add-on running on XBMC. This add-on resolves the URL for video content link. If found, video will be played. Features:
 *  Queue videos to XBMC player by sending consecutive requests.
 *  Supports YouTube playlist and Dailymotion playlist.
 *  Supports most of the Video Hosting website URL.
 *  Auto-update service add-ons, keeps you up to date on fixes.
This service add-on can be download from AJ Add-ons repository: http://code.google.com/p/apple-tv2-xbmc/

PlayIt Chrome extension comes with following features:
 *  Easy accessible button to send Current Active URL to XBMC PlayIt service add-on or enable Frame View (Checkout screenshot).
 *  Finds videos embedded into iframe and embed containers on current page. Checkout screenshot.
 *  Context menu item to quickly select a video link and send it across your favorite XBMC.
 *  Many more features going to come. Enjoy!

-----------------
Changelog:

2.7.0:
  - Fix to push unlimited SoundCloud audio requests to XBMC, song never expires. Requires PlayIt v0.4.5

2.6.9:
  - Fix for the alignment of "PlayIt Frame View" w.r.t. frame element position.

2.6.8:
  - Fix for clearing last played audio files from XBMC player playlist. 
  - Integrated playIt button in small size track list of SoundCloud.
  - Need PlayIt service add-on v0.3.8.

2.6.7:
  - Quick fixes for SoundCloud.com integration when a song might not have artwork.

2.6.6:
  - As per requested by John, playIt integrated into SoundCloud. Enjoy music streaming.

2.6.5:
  - Options page error labels reserved.

2.6.4:
  - Save button on Options page saves changes on first click. 
  - Reset button on Options page should not save changes until Save button is pressed.

2.6.3:
  - Important security fixes.
 
2.6.2:
  -  New buttons for Play Active URL and Frame View.
  -  New Option to hide Frame View button. In this case, the PlayIt button defaults to Play Active URL.
  -  New Options layout.                    

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

Όνομα PlayIt on XBMC PlayIt on XBMC
ID lfmmppchelncapanmhdefnmfjplkpchl
Επίσημο URL https://chromewebstore.google.com/detail/playit-on-xbmc/lfmmppchelncapanmhdefnmfjplkpchl
Περιγραφή PlayIt on XBMC sends selected URL to PlayIt service add-on installed on XBMC that resolves link to video and play/queue in player.
Μέγεθος Αρχείου 362 KB
Αριθμός Εγκαταστάσεων 3,726
Τρέχουσα Έκδοση 2.7.0
Τελευταία Ενημέρωση 2013-07-02
Ημερομηνία Δημοσίευσης 2013-07-02
Αξιολόγηση 3.19/5 Συνολικά 42 Αξιολογήσεις
Προγραμματιστής ajdeveloped
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://code.google.com/p/apple-tv2-xbmc/
Διεύθυνση URL της Σελίδας Βοήθειας http://forum.xbmc.org/showthread.php?tid=118251
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PlayIt on XBMC",
    "version": "2.7.0",
    "background": {
        "scripts": [
            "playit.js",
            "rpc.js"
        ]
    },
    "options_page": "options.html",
    "description": "PlayIt on XBMC sends selected URL to PlayIt service add-on installed on XBMC that resolves link to video and play\/queue in player.",
    "browser_action": {
        "default_icon": "small-icon.png",
        "default_title": "PlayIt on XBMC"
    },
    "web_accessible_resources": [
        "Icon-64.png",
        "Icon-48.png"
    ],
    "permissions": [
        "http:\/\/*\/PlayIt",
        "notifications",
        "tabs",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.soundcloud.com\/*"
            ],
            "js": [
                "js\/jquery-2.0.0.min.js",
                "sc-inject.js"
            ]
        }
    ],
    "icons": {
        "16": "small-icon.png",
        "32": "Icon-32.png",
        "48": "Icon-48.png",
        "64": "Icon-64.png",
        "96": "Icon-96.png",
        "128": "Icon-128.png",
        "256": "Icon-256.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com 'unsafe-eval'; object-src 'self'"
}