From fac9b0e8b68180cab2c1a4e0427106265432e7bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Allan=20Nordh=C3=B8y?= Date: Sat, 29 Jun 2019 13:09:48 +0200 Subject: [PATCH] Language reworked --- README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 9cffa9c..b969012 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ ## Install -| **Chrome** | **Firefox** | **Opera** | **Safari** | **IE** | +| **Chrome** | **Firefox** | **Opera** | **Safari** | **EDGE** | | ----------------- | ------------------ | -------------------------------- | ----------------- | ------------- | | [Available][0] | [Available][1] | Works with [Chrome extension][0] | Not yet | Not yet | @@ -76,33 +76,33 @@ their respective scores. * Run: * `./captain-fact-overlay-injector/dev/start_graphql_api.sh` - Start the GraphQL API. You can access GraphiQL at http://localhost:4002/graphiql * `npm start` - Start the overlay injector test pages on http://localhost:3342 - * `npm run test` - run all unit tests + * `npm run test` - Runs all unit tests ## FAQ -* Why do you need storage permissions ? +* Why do you need storage permissions? -We store a local cache of videos ids that exist on CaptainFact. This cache gets updated when you visit Youtube +We store a local cache of videos IDs that exist on CaptainFact. This cache gets updated when you visit YouTube if it's older than 15 minutes. This is a privacy improvement that guarantees we don't track the videos you're watching and don't send unnecessary requests. -* Why do you need tabs permissions ? +* Why do you need tab permissions? -Because we inject script programmatically from background (only if video is known from cache) and -to be able to disable CaptainFact on all tabs when you unselect it from extension popup. +Because the script is injected programmatically in the background (only if video is known from cache) and +to be able to turn off CaptainFact on all tabs when you unselect it from the extension popup. You can check by yourself in `chrome/extension/background.js` (look for `chrome.tabs.`) -* Why do you need Youtube permissions ? +* Why do you need Youtube permissions? -To be able to inject the facts overlay on Youtube videos. +To be able to inject the facts overlay on YouTube videos. -* Why do you only inject on youtube.com and not in embedded players everywhere else ? +* Why do you only inject on youtube.com and not in embedded players everywhere else? We may want to implement this in a separate release in the future. We don't want to implement this feature in main extension cause it means asking for permissions to access all your sites. -* Can I add sources on videos directly from the extension ? +* Can I add sources on videos directly from the extension? Not at the moment.