Welcome to mirror list, hosted at ThFree Co, Russian Federation.

install.vue « pages « Website - github.com/Anarios/return-youtube-dislike.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 580a459667506f2a9fe00f115136be0d3ff973a3 (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
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
<template>
  <div>

    <h1 :style="$vuetify.breakpoint.xs ? 'font-size: 2rem;' : 'font-size: 3rem;'" >Select Your Platform</h1>

    <div style="color: #999;">
      <p style=" margin-top: .5rem; margin-bottom: 0;"> This is an <b>ALPHA version!</b> It may be slow. It may be buggy.</p>
      <p style="margin-bottom: 1rem;">Available for Firefox and all Chromium browsers (Chrome/Edge/Opera/Brave).</p>
    </div>

    <v-btn class="mainAltButton" :href="firefoxLink" target="_blank">
      <v-icon style="margin-right: 0.5em;">mdi-firefox</v-icon>
      Firefox
    </v-btn>

    <v-btn class="mainAltButton" :href="chromeLink" target="_blank">
      <v-icon style="margin-right: 0.5em;">mdi-google-chrome</v-icon>
      Chrome
    </v-btn>

    <v-btn class="mainAltButton" :href="chromeLink" target="_blank">
      <v-icon style="margin-right: 0.5em;">mdi-microsoft-edge</v-icon>
      Edge
    </v-btn>

    <v-btn class="mainAltButton" :href="chromeLink" target="_blank">
      <v-icon style="margin-right: 0.5em;">mdi-opera</v-icon>
      Opera
    </v-btn>

    <v-btn class="mainAltButton" :href="chromeLink" target="_blank">
      <v-img style="margin-right: 1rem;" src="ui/brave-mono.svg" height="20" width="20" />
      Brave
    </v-btn>

    <h3 style="margin-top: 3em; margin-bottom:0">Other Platforms</h3>
    <div style="color: #999">
      <p style="margin-top: .5rem; margin-bottom:.5rem;">If your browser is not yet supported, try this UserScript.</p>
    </div>

    <v-btn class="mainAltButton" :href="scriptLink" target="_blank">
      <v-icon style="margin-right: 0.5em;">mdi-script-text-outline</v-icon>
      Userscript (Tampermonkey)
    </v-btn>

    <h3 style="margin-top: 3em;">Third Party Implementations</h3>
    <div style="color: #999;">
      <p style="margin-top: .5rem; margin-bottom: .5rem;">No liability on our side, use at your own risk.</p>
    </div>
    <v-btn class="mainAltButton" :href="iosJailbreakLink" target="_blank">
      <v-icon style="margin-right: 0.5em;">mdi-apple</v-icon>
      iOS (Jailbroken)
    </v-btn>


  </div>
</template>

<script>
export default {
  data() {
    return {
      chromeLink: "https://chrome.google.com/webstore/detail/youtube-dislike-button/gebbhagfogifgggkldgodflihgfeippi/",
      firefoxLink: "https://addons.mozilla.org/en-US/firefox/addon/return-youtube-dislikes/",
      scriptLink: "https://github.com/Anarios/return-youtube-dislike/raw/main/Extensions/UserScript/Return%20Youtube%20Dislike.user.js",

      iosJailbreakLink: "https://repo.lillieweeb001.xyz/"
    }
  }
}
</script>