summaryrefslogtreecommitdiff
path: root/plugins/no_title_counters/init.php
blob: ff8dbe9fa4e0ec76a292566bee67a1902360a36d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
class No_Title_Counters extends Plugin {
	private $host;

	function about() {
		return array(null,
			"Remove counters from window title (prevents tab flashing on new articles)",
			"fox");
	}

	function init($host) {
		$this->host = $host;

	}

	function get_js() {
		return file_get_contents(__DIR__ . "/init.js");
	}

	function api_version() {
		return 2;
	}

}