summaryrefslogtreecommitdiff
path: root/init.php
diff options
context:
space:
mode:
Diffstat (limited to 'init.php')
-rw-r--r--init.php23
1 files changed, 23 insertions, 0 deletions
diff --git a/init.php b/init.php
new file mode 100644
index 0000000..9183799
--- /dev/null
+++ b/init.php
@@ -0,0 +1,23 @@
+<?php
+class Af_Zz_Pause_Bg extends Plugin {
+ private $host;
+
+ function about() {
+ return array(1.0,
+ "Pause HTML5 videos when in background",
+ "fox");
+ }
+
+ function init($host) {
+ $this->host = $host;
+ }
+
+ function get_js() {
+ return file_get_contents(__DIR__ . "/init.js");
+ }
+
+ function api_version() {
+ return 2;
+ }
+
+}