Annotations Restored for YouTube™
Bring annotation support back to YouTube™!
Τι είναι το Annotations Restored for YouTube™;
Το Annotations Restored for YouTube™ είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://isaackei.com, και η κύρια λειτουργία του είναι "Bring annotation support back to YouTube™!".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Annotations Restored for YouTube™
Λήψη αρχείων επέκτασης Annotations Restored for YouTube™ σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
On January 15 2019, YouTube decided to discontinue annotations. While the feature was frequently abused, it did have many legitimate use cases, such as games, corrections, and a form of commentary that could be toggled on and off. The removal left many older videos obsolete. Annotations Restored fixes this by searching for any archived annotation files and displaying them if found. Join the Discord!: https://discord.gg/v7xMm2r8wH LATEST CHANGES (1.2.1) - Added Discord link to popup - Support for Portuguese by Gersonzao - Support for Polish by Kamil K USAGE The extension will automatically look for a copy of a video's annotations online and display them if found. Annotation files (.xml) that you have saved locally can also be loaded into the current video using the popup. PERMISSIONS Access your data for www.youtube.com - Required to load the annotations into the video player Screenshot video sources: chuggaaconroy - Mario Menu https://www.youtube.com/watch?v=6Uwd5w1AwYU DaeOh - Annotation Tetris https://www.youtube.com/watch?v=eIIV6a2Pdh4 Feel free to email me with any translation fixes or create a pull request on GitHub :)
Βασικές Πληροφορίες Επέκτασης
Όνομα | Annotations Restored for YouTube™ |
ID | daabpdmgkghdbfljmeahnplkcldbeefg |
Επίσημο URL | https://chromewebstore.google.com/detail/annotations-restored-for/daabpdmgkghdbfljmeahnplkcldbeefg |
Περιγραφή | Bring annotation support back to YouTube™! |
Μέγεθος Αρχείου | 352 KB |
Αριθμός Εγκαταστάσεων | 24,051 |
Τρέχουσα Έκδοση | 1.2.1 |
Τελευταία Ενημέρωση | 2023-06-26 |
Ημερομηνία Δημοσίευσης | 2020-01-21 |
Αξιολόγηση | 4.32/5 Συνολικά 94 Αξιολογήσεις |
Προγραμματιστής | https://isaackei.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/isaackd/AnnotationsRestored |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/isaackd/AnnotationsRestored |
Υποστηριζόμενες Γλώσσες | de,en,fr,vi,es,it,pl,pt-BR,ru,zh-CN,zh-TW,ja,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_name__", "short_name": "__MSG_shortName__", "version": "1.2.1", "description": "__MSG_description__", "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAi7neU9iuW9mfpSo5zsaYLPuYNG0PkaKBCmJHVP+++wawDEzQRrcNihxglnGc+kn0KHmp6D53ibr1EIHMcLlSNvYgsZaylY8sI78cXSvlcUY9VfUtoSTaRsHQ4SlP6tS6GUYutc38vZB7kZx9p1CX2gH7IsDe1rqs2vwtFy+WiGf3bWXfTGuScBTeUguOMEXxY4bRiQRtiFUprSQyTR4mHSe8CFOX+zUqpnSSe2IgWLsATiae1fBJHTaOjB1V\/oxgKfm5jhBBPXXtmoHFOU71tm1MpPM02a1HmNfIf6Mwb7sM0djjD2Zy0gtM6jdFpObVv2Uq0YD9l+k7vaH5x1hCDQIDAQAB", "default_locale": "en", "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "64": "icons\/icon64.png", "128": "icons\/icon128.png" }, "permissions": [ "storage" ], "optional_permissions": [ "downloads" ], "action": { "default_title": "Annotations Restored", "default_popup": "popup\/index.html" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "js\/annotationlib\/dist\/AnnotationParser.js", "js\/annotationlib\/dist\/AnnotationRenderer.js", "js\/content.js" ], "css": [ "js\/annotationlib\/dist\/AnnotationRenderer.css" ] } ], "background": { "service_worker": "js\/background.js" } } |