Userscript-Code funktioniert in Firefox, aber nicht in Chrome? (unsafeWindow)

Ich verwende dieses Userscript in Firefox, das ungelesene Tweets in Tweetdeck zählt und die neuen Tweets färbt.

Es funktioniert gut mit Firefox (Greasemonkey), aber in Chrome bekomme ich nichts. Hier ist der Code:

// ==UserScript==
// @name     TweetDeck Unread Notifications
// @include  https://tweetdeck.twitter.com
// @include  https://tweetdeck.twitter.com/*
// @grant    none
// ==/UserScript==
var head, style;
head = document.getElementsByTagName('head')[0];
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = ".tdUnreadUnread { background-color: #444444; }";
head.appendChild(style);

function animate_bg(ele, from, to) {
ele.css("background-color", "rgba(68, 68, 68, " + (from += from > to ? -1 :    1) / 10 + ")");
if (from != to) setTimeout(function () {
    animate_bg(ele, from, to)
}, 20);
}

var counter = 0;
var loadingTime = true;

unsafeWindow.tdUnreadRefresh = function () {
var detail = $(".js-detail-content");
$("article").each(function (i) {
    if (detail.length == 0) {
        if (!$(this).hasClass("tdUnreadUnread")) {
            $(this).addClass("tdUnreadUnread");
            if (!loadingTime) {
                counter++;
                $(this).mouseenter(function () {
                    counter--;
                    $(this).off("mouseenter");
                    animate_bg($(this), 10, 0);
                });
            } else animate_bg($(this), 10, 0);
        }
    }
});

if (counter > 0) {
    document.title = "(" + counter + ") TweetDeck";
} else {
    document.title = "TweetDeck"
       }
}
  unsafeWindow.tdUnreadLoadingOver = function () {
  loadingTime = false;
  }

  setInterval("tdUnreadRefresh()", 1000);
  setTimeout("tdUnreadLoadingOver()", 30000);

Jede Hilfe dabei wird sehr geschätzt. Danke Bob

Antworten auf die Frage(2)

Ihre Antwort auf die Frage