-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
99 lines (89 loc) · 3.34 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0">
<title>Chromecast pour Canal+</title>
<style>
body {
margin: 0 0 40px;
font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
font-weight: 300;
font-size: 24px;
color: #666666;
background-color: #f9f9f9;
}
.link {
color: inherit;
}
.panel {
margin: 5% 10%;
width: 80%;
text-align: center;
}
.button {
padding: 6px 12px;
box-shadow: 4px 4px 0 #ccc;
color: #ffffff;
background-color: #000000;
font-style: italic;
font-weight: bold;
text-decoration: none;
text-transform: uppercase;
}
.credits {
font-size: 0.6125em;
font-style: italic;
}
.not-visible {
display: inline-block;
width: 0px;
height: 0px;
overflow: hidden;
}
.promptr {
font-size: 0.75em;
color: #ffffff;
background: #d00;
padding: 4px;
border-radius: 4px;
}
.promptr.success {
background: #00dd00;
}
@media only screen and (max-width:480px) {
.panel {
position: inherit;
width: auto;
height: auto;
margin: 20px;
}
}
</style>
</head>
<body>
<div class="panel">
<p>Glisser deposez le bouton ci dessous dans votre barre de favoris<p>
<p><a class="button" onclick="alert('J\'ai pas dis de cliquer dessus, j\'ai demandé à le déposer dans votre barre de favoris. Essaye encore.'); return false;" href="javascript:(a%20=%20(b%20=%20document).createElement('script')).src%20=%20'http://maxwellito.github.io/chromecast-canal-plus/injector.js',%20b.body.appendChild(a);void(0);" title="Chromecast pour Canal+">Chromecast+</a></p>
<p>...puis cliquez sur votre nouveau raccourci lorsque vous naviguez sur <a class="link" href="http://canalplus.fr">canalplus.fr</a> pour afficher les videos disponibles pour Chromecast.</p>
<p id="promptr" class="promptr">Attention, pour utiliser ce script vous devez utiliser Chrome/Chromium avec l'extension <a class="link" href="https://chrome.google.com/webstore/detail/google-cast/boadgeojelhgndaghljhdicfkmllpafd">Chromecast</a>.</p>
<p class="credits"><a class="link" href="http://twitter.com/mxwllt">@mxwllt</a></p>
<div>
<iframe class="vine-embed" src="https://vine.co/v/OhPV2wzH137/embed/simple" width="300" height="300" frameborder="0"></iframe><!-- <script async src="//platform.vine.co/static/scripts/embed.js" charset="utf-8"></script> -->
</div>
</div>
<script type="text/javascript">
// Listener setup for when the chromecast is available
window['__onGCastApiAvailable'] = function (loaded, errorInfo) {
var promptr = document.getElementById('promptr');
if (loaded) {
promptr.innerText = 'Vous etes pret a caster.';
promptr.className += ' success';
} else {
promptr.innerHTML += '<br>Votre navigateur n\'est pas pret a caster.';
}
};
</script>
<script type="text/javascript" src="https://www.gstatic.com/cv/js/sender/v1/cast_sender.js"></script>
</body>
</html>