Twitter - adds unread notifications count in the tab title

Adds unread notifications count in the tab title

目前為 2016-08-06 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name        Twitter - adds unread notifications count in the tab title
// @author      darkred
// @description Adds unread notifications count in the tab title
// @include     https://twitter.com/*
// @version     3
// @grant       none
// @require     https://greasyfork.org/scripts/21927-arrive-js/code/arrivejs.js?version=139586
// @namespace rikkie
// ==/UserScript==


var counter;


function addCounterInTitle(){
	counter = parseInt(document.querySelector('.count-inner').innerHTML);
	if (counter > 0 && document.title.indexOf('|') === -1) {
		document.title = counter + ' | ' + document.title;
	} else if (counter === 0) {
		document.title = /[0-9]*\\|(.*)/g.exec(document.title)[1];
	}
}


document.arrive('div.js-account-summary:nth-child(1) > div:nth-child(2) > a:nth-child(1) > img:nth-child(1)', function() {		// 'the 1st avatar thumbnail in the "Who to follow" panel'
	addCounterInTitle();
});




document.arrive('.new-tweets-bar', function(){					// Whenever there are new unread tweets in the timeline
	// alert('aLLAKSE');
	var target = document.querySelector('.new-tweets-bar');

	var observer = new MutationObserver(function (mutations) {
		mutations.forEach(function (mutation) {					// Disconnect the observer on the 1st mutation
			observer.disconnect();
		});
	});

	addCounterInTitle();

	var config = {
		attributes: true,
		// childList: true,
		// characterData: true,
		// subtree: true
		// attributeOldValue: true,
		attributeFilter: ['data-item-count'],		// this is required in order to count only mutations of the unread posts number		--> document.querySelector('.new-tweets-bar').getAttribute('data-item-count')
	};

	observer.observe(target, config);

});




document.leave('.new-tweets-bar', function(){
	addCounterInTitle();
});





// Reset the counter when viewing Notifications tab
document.arrive('#timeline', function(){
	document.querySelector('.count-inner').innerHTML = 0;
	document.title = /[0-9]*\\|(.*)/g.exec(document.title)[1];
});








// When there's change in the Notifications counter
// var target2 = document.querySelector('.count-inner');
var target2 = document.querySelector('.count');

var observer2 = new MutationObserver(function (mutations) {
	mutations.forEach(function (mutation) {
		// alert('egine');
		observer2.disconnect();
	});
});

addCounterInTitle();

var config2 = {
	attributes: true,
	//  characterData: true,
};

observer2.observe(target2, config2);