|
@@ -1,27 +1,17 @@
|
|
|
<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>
|
|
|
|
|
|
- <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>
|
|
|
|
|
|
- <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>
|
|
@@ -31,16 +21,20 @@
|
|
|
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: "Where does extension get data?",
|
|
|
+ answer: "Combination of GoogleAPI data and scraped data. We save all available data to our DB for it to be available after google shuts down dislike counts in their API."
|
|
|
+ },
|
|
|
+ {
|
|
|
+ question: "Video dislike count doesn't update",
|
|
|
+ answer: "Right now video dislikes are cached, and arent updated very frequenly. Once in 2-3 days, not more often Yeah, it's not ideal, but it is what it is. Working on improving how often we can update them"
|
|
|
},
|
|
|
{
|
|
|
- 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: "How does this work?",
|
|
|
+ answer: "The extension collects the video id of the video you are watching, fetches the dislike (and other fields like views, likes etc) using our API, if this is the first time the video was fetched by our API, it will use the YouTube API to get the data, then stores the data in a database for caching (cached for around 2-3 days) and archiving purposes and returns it to you. The extension then displays the dislikes to you."
|
|
|
},
|
|
|
{
|
|
|
- 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 "
|
|
|
+ question: "What will happen after the YouTube API stops returning the dislike count?",
|
|
|
+ answer: "The backend will switch to using a combination of archived dislike stats, estimates extrapolated from extension user data and estimates based on view/like ratios for videos whose dislikes weren't archived and for outdated dislike archives."
|
|
|
},
|
|
|
],
|
|
|
}),
|