CouchPotato Script Injector

Injects the CouchPotato automation script on IMDB movie pages

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         CouchPotato Script Injector
// @namespace    http://www.tampermonkey.net
// @version      0.1
// @description  Injects the CouchPotato automation script on IMDB movie pages
// @author       GCandez
// @match        http://www.imdb.com/title/*
// @grant        none
// ==/UserScript==

//CONFIGURATION


var apiAdress = ''; //The adress for the CouchPotato API (e.g. http://localhost:8080/api)
var apiKey = ''; //The key for the CouchPotato API


(function(){
    //CHECK IF CURRENT PAGE IS MOVIE PAGE
    var element = document.querySelector('meta[property="og:type"]');
    var content = element && element.getAttribute("content");
    var isMovie = content == "video.movie";
    
    if(!isMovie){
        return;
    }
    
    //IS MOVIE, INJECT SCRIPT
    var apiAdressAndKey = apiAdress + '/' + apiKey;
    
    var script = document.createElement('script');
        script.type = 'text/javascript';
        script.src = apiAdressAndKey + '/userscript.bookmark/?host=' + apiAdressAndKey + '/userscript.get/5ssselO1/&r=' + Math.random() * 99999999;

    document.body.appendChild(script);
})();