install.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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: 1em;">Available for Firefox and all Chromium browsers (Chrome/Edge/Opera/Brave).</p>
  7. </div>
  8. <v-btn class="mainAltButton" :href="firefoxLink" target="_blank">
  9. <v-icon style="margin-right: 0.5em;">mdi-firefox</v-icon>
  10. Firefox
  11. </v-btn>
  12. <v-btn class="mainAltButton" :href="chromeLink" target="_blank">
  13. <v-icon style="margin-right: 0.5em;">mdi-google-chrome</v-icon>
  14. Chrome
  15. </v-btn>
  16. <v-btn class="mainAltButton" :href="chromeLink" target="_blank">
  17. <v-icon style="margin-right: 0.5em;">mdi-microsoft-edge</v-icon>
  18. Edge
  19. </v-btn>
  20. <v-btn class="mainAltButton" :href="chromeLink" target="_blank">
  21. <v-icon style="margin-right: 0.5em;">mdi-opera</v-icon>
  22. Opera
  23. </v-btn>
  24. <h3 style="margin-top: 3em; margin-bottom:0">Other Platforms</h3>
  25. <div style="color: #999">
  26. <p style="margin-top: 0em; margin-bottom:0;">If your browser is not yet supported, try this UserScript.</p>
  27. </div>
  28. <v-btn class="mainAltButton" :href="scriptLink" target="_blank">
  29. <v-icon style="margin-right: 0.5em;">mdi-script-text-outline</v-icon>
  30. Userscript (Tampermonkey)
  31. </v-btn>
  32. <h3 style="margin-top: 3em;">Third Party Implementations</h3>
  33. <div style="color: #999">
  34. <p style="margin-bottom: 0;">No liability on our side, use at your own risk.</p>
  35. </div>
  36. <v-btn class="mainAltButton" :href="iosJailbreakLink" target="_blank">
  37. <v-icon style="margin-right: 0.5em;">mdi-apple</v-icon>
  38. iOS (Jailbroken)
  39. </v-btn>
  40. </div>
  41. </template>
  42. <script>
  43. export default {
  44. data() {
  45. return {
  46. chromeLink: "https://chrome.google.com/webstore/detail/youtube-dislike-button/gebbhagfogifgggkldgodflihgfeippi/",
  47. firefoxLink: "https://addons.mozilla.org/en-US/firefox/addon/return-youtube-dislikes/",
  48. scriptLink: "https://github.com/Anarios/return-youtube-dislike/raw/main/Extensions/UserScript/Return%20Youtube%20Dislike.user.js",
  49. iosJailbreakLink: "https://repo.lillieweeb001.xyz/"
  50. }
  51. }
  52. }
  53. </script>