Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Anarios/return-youtube-dislike.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFront <27463495+Frontesque@users.noreply.github.com>2021-11-24 04:16:23 +0300
committerFront <27463495+Frontesque@users.noreply.github.com>2021-11-24 04:16:23 +0300
commit625c6924e609cc831f81174249a7ffe7d0ba3cd3 (patch)
tree464e70be0a17f3962dfcc6e194d0efd75d203b78 /Website/pages/faq.vue
parent34dc818a55de712fc49eff730243f89b25d36146 (diff)
New site :+1:
Diffstat (limited to 'Website/pages/faq.vue')
-rw-r--r--Website/pages/faq.vue49
1 files changed, 49 insertions, 0 deletions
diff --git a/Website/pages/faq.vue b/Website/pages/faq.vue
new file mode 100644
index 0000000..5b882ea
--- /dev/null
+++ b/Website/pages/faq.vue
@@ -0,0 +1,49 @@
+<template>
+ <div>
+
+ <section style="position: relative;">
+
+
+ <div class="center">
+ <center>
+
+ <h1 style="font-size: 3em; margin-bottom: 0em;">Frequently Asked Questions</h1>
+ <p style="color: #999; margin-bottom: 3em;">Still have questions? Feel free to join our Discord!</p>
+
+ <v-expansion-panels focusable>
+ <v-expansion-panel v-for="(item, i) in items" :key="i" style="width: 50vw; min-width: 300px;">
+ <v-expansion-panel-header v-text="item.question">Loading</v-expansion-panel-header>
+ <v-expansion-panel-content v-html="item.answer" style="text-align: left; padding: 0.5em;">Loading</v-expansion-panel-content>
+ </v-expansion-panel>
+ </v-expansion-panels>
+
+ </center>
+ </div>
+
+
+ </section>
+
+ </div>
+</template>
+
+<script>
+ export default {
+ data: () => ({
+ items: [
+ {
+ question: "Why is it not in chrome store yet?",
+ answer: "Chrome extension appoval process takes some time. As soon as it's available in the store - We'll update the site "
+ },
+ {
+ question: "Is it dangerous?/Is it a virus?",
+ answer: "While there is some trust involved in installing an extension from 3-rd party source - you can see all permissions requested by the extension before installing it. This extension only asks for access to youtube.com page "
+ },
+ {
+ question: "I downvoted a video, and downvotes number didn't change",
+ answer: "Currently we're using YouTube API to get dislikes count. It may take some time for data to be updated. YouTube might freeze dislike counts as well. We're working on a solution for this "
+ },
+ ],
+ }),
+
+ }
+</script> \ No newline at end of file