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:
authorNikita Krupin <krupin.nikita0110@gmail.com>2022-04-28 23:35:17 +0300
committerNikita Krupin <krupin.nikita0110@gmail.com>2022-04-28 23:35:17 +0300
commit3664f28a0e89ab29eb9ae4cb4fceab7c1819a151 (patch)
tree75e5409807585ee55f7e8f14e1b16a2de21cd0fd /Website/pages/faq.vue
parentea2805a5d3dd3b5d43fb9222bb0a63801071e90b (diff)
unused styles removed
Diffstat (limited to 'Website/pages/faq.vue')
-rw-r--r--Website/pages/faq.vue13
1 files changed, 7 insertions, 6 deletions
diff --git a/Website/pages/faq.vue b/Website/pages/faq.vue
index af0741d..f0115fc 100644
--- a/Website/pages/faq.vue
+++ b/Website/pages/faq.vue
@@ -1,11 +1,11 @@
<template>
- <div style="width: 90vw" class="mx-auto">
+ <div class="col-xs-12 col-sm-11 col-md-9 col-lg-7 mx-auto">
<h1 class="title-text">Frequently Asked Questions</h1>
<p style="color: #999; margin-top: 0.5rem; margin-bottom: 1.5rem">
Still have questions? Feel free to join our Discord!
</p>
- <v-expansion-panels class="col-xs-12 col-sm-11 col-md-9 col-lg-8">
+ <v-expansion-panels>
<v-expansion-panel v-for="(item, i) in items" :key="i">
<v-expansion-panel-header>
{{ item.question }}
@@ -60,18 +60,19 @@ export default {
"Coming soon. We are looking into using Oauth or a different read only API with a limited scope so creators can share their dislike counts verifiability. ",
},
{
- question:
- "What data do you collect and how is it treated?",
+ question: "What data do you collect and how is it treated?",
answer:
"The extension only collects data that is strictly necessary for it to function properly, such as IP address or ID of the video you're watching. None of your data will ever be sold to 3rd parties. If you would like to know more about how we handle security and privacy check out our <a href='https://github.com/Anarios/return-youtube-dislike/blob/main/Docs/SECURITY-FAQ.md'>security FAQ</a>.",
},
{
question: "How does the API/Backend work?",
- answer: "The backend is using archived data from when the youtube api was still returning the dislike count, extension users like/discount count and extrapolation. In the near future we will be allowing content creators to submit their dislike count easily and safely and we will be adding ArchiveTeam's archived data (4.56 billion videos) into our current database. <a href='https://www.youtube.com/watch?v=GSmmtv-0yYQ'>You can also view a video on the topic.</a>",
+ answer:
+ "The backend is using archived data from when the youtube api was still returning the dislike count, extension users like/discount count and extrapolation. In the near future we will be allowing content creators to submit their dislike count easily and safely and we will be adding ArchiveTeam's archived data (4.56 billion videos) into our current database. <a href='https://www.youtube.com/watch?v=GSmmtv-0yYQ'>You can also view a video on the topic.</a>",
},
{
question: "Why does the dislike count show 'DISLIKES DISABLED'?",
- answer: "At the time of writing we aren't showing dislikes for videos that disabled their likes and dislikes count. The extension displays 'DISLIKES DISABLED' for these videos. We will be showing dislikes on all videos soon, this is just a temporary workaround so people don't think the extension is broken (which isn't working well). Sometimes a recently uploaded video might show 'DISLIKES DISABLED' even if the creator hasn't disabled it, this is due to how we are detecting if dislikes are disabled, it should go away in a few hours or by liking or disliking the video and refreshing the page (hopefully).",
+ answer:
+ "At the time of writing we aren't showing dislikes for videos that disabled their likes and dislikes count. The extension displays 'DISLIKES DISABLED' for these videos. We will be showing dislikes on all videos soon, this is just a temporary workaround so people don't think the extension is broken (which isn't working well). Sometimes a recently uploaded video might show 'DISLIKES DISABLED' even if the creator hasn't disabled it, this is due to how we are detecting if dislikes are disabled, it should go away in a few hours or by liking or disliking the video and refreshing the page (hopefully).",
},
],
}),