install.vue 1.9 KB

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