Index: safari/ext/content.js |
=================================================================== |
--- a/safari/ext/content.js |
+++ b/safari/ext/content.js |
@@ -78,6 +78,11 @@ |
case "input": |
type = "IMAGE"; |
break; |
+ case "video": |
+ case "audio": |
+ case "source": |
+ type = "MEDIA"; |
kzar
2015/03/02 16:56:53
One thought I had was that you could add most of t
Sebastian Noack
2015/03/02 16:59:26
All types handled here are actually distinguishabl
kzar
2015/03/02 17:04:29
So for example I thought you could add ["MEDIA", "
Sebastian Noack
2015/03/02 17:08:49
This won't work, since "video", "audio" and "sourc
|
+ break; |
case "object": |
case "embed": |
type = "OBJECT"; |