install.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <template>
  2. <div>
  3. <h1 style="font-size: 3em; margin-bottom: 0;">Select Your Platform</h1>
  4. <div style="color: #999">
  5. <p style="margin-bottom: 0;"> This is an <b>ALPHA version!</b> It may be slow. It may be buggy.</p>
  6. <p style="margin-bottom: 3em;">Only available for Chrome, Firefox and as a Userscript now, but coming to other platforms soon.</p>
  7. </div>
  8. <v-btn class="mainAltButton" :href="chromeLink" target="_blank">
  9. <v-icon style="margin-right: 0.5em;">mdi-google-chrome</v-icon>
  10. Chrome
  11. </v-btn>
  12. <v-btn class="mainAltButton" :href="firefoxLink" target="_blank">
  13. <v-icon style="margin-right: 0.5em;">mdi-firefox</v-icon>
  14. Firefox
  15. </v-btn>
  16. <v-btn class="mainAltButton" :href="scriptLink" target="_blank">
  17. <v-icon style="margin-right: 0.5em;">mdi-script-text-outline</v-icon>
  18. Userscript (Tampermonkey)
  19. </v-btn>
  20. <h3 style="margin-top: 3em;">Third Party Implementations</h3>
  21. <div style="color: #999">
  22. <p style="margin-bottom: 0;">No liability on our side, use at your own risk</p>
  23. </div>
  24. <v-btn class="mainAltButton" :href="iosJailbreakLink" target="_blank">
  25. <v-icon style="margin-right: 0.5em;">mdi-apple</v-icon>
  26. iOS (Jailbroken)
  27. </v-btn>
  28. </div>
  29. </template>
  30. <script>
  31. export default {
  32. data() {
  33. return {
  34. chromeLink: "https://chrome.google.com/webstore/detail/youtube-dislike-button/gebbhagfogifgggkldgodflihgfeippi/",
  35. firefoxLink: "https://addons.mozilla.org/en-US/firefox/addon/return-youtube-dislikes/",
  36. scriptLink: "https://github.com/Anarios/return-youtube-dislike/raw/main/Extensions/UserScript/Return%20Youtube%20Dislike.user.js",
  37. iosJailbreakLink: "https://repo.lillieweeb001.xyz/"
  38. }
  39. }
  40. }
  41. </script>