install.vue 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <template>
  2. <div>
  3. <h1 :style="$vuetify.breakpoint.xs ? 'font-size: 2rem;' : 'font-size: 3rem;'" >Select Your Platform</h1>
  4. <div style="color: #999;">
  5. <p style=" margin-top: .5rem; margin-bottom: 0;"> This is an <b>ALPHA version!</b> It may be slow. It may be buggy.</p>
  6. <p style="margin-bottom: 1rem;">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. <v-btn class="mainAltButton" :href="chromeLink" target="_blank">
  25. <v-img style="margin-right: 1rem;" src="ui/brave-mono.svg" height="20" width="20" />
  26. Brave
  27. </v-btn>
  28. <h3 style="margin-top: 3em; margin-bottom:0">Other Platforms</h3>
  29. <div style="color: #999">
  30. <p style="margin-top: .5rem; margin-bottom:.5rem;">If your browser is not yet supported, try this UserScript.</p>
  31. </div>
  32. <v-btn class="mainAltButton" :href="scriptLink" target="_blank">
  33. <v-icon style="margin-right: 0.5em;">mdi-script-text-outline</v-icon>
  34. Userscript (Tampermonkey)
  35. </v-btn>
  36. <h3 style="margin-top: 3em;">Third Party Implementations</h3>
  37. <div style="color: #999;">
  38. <p style="margin-top: .5rem; margin-bottom: .5rem;">No liability on our side, use at your own risk.</p>
  39. </div>
  40. <v-btn class="mainAltButton" :href="iosJailbreakLink" target="_blank">
  41. <v-icon style="margin-right: 0.5em;">mdi-apple</v-icon>
  42. iOS (Jailbroken)
  43. </v-btn>
  44. </div>
  45. </template>
  46. <script>
  47. export default {
  48. data() {
  49. return {
  50. chromeLink: "https://chrome.google.com/webstore/detail/youtube-dislike-button/gebbhagfogifgggkldgodflihgfeippi/",
  51. firefoxLink: "https://addons.mozilla.org/en-US/firefox/addon/return-youtube-dislikes/",
  52. scriptLink: "https://github.com/Anarios/return-youtube-dislike/raw/main/Extensions/UserScript/Return%20Youtube%20Dislike.user.js",
  53. iosJailbreakLink: "https://repo.lillieweeb001.xyz/"
  54. }
  55. }
  56. }
  57. </script>