install.vue 2.1 KB

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