Anime Skip Player
Custom video player for anime streaming websites. Skip intros, outros, and more.
Τι είναι το Anime Skip Player;
Το Anime Skip Player είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://anime-skip.com, και η κύρια λειτουργία του είναι "Custom video player for anime streaming websites. Skip intros, outros, and more.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Anime Skip Player
Λήψη αρχείων επέκτασης Anime Skip Player σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Watch anime faster than ever! The Anime Skip Player lets you automatically skip intros, outros, or anything else that you don't want to watch. Anime Skip replaces the video player of streaming services with it's own, standardizing the viewing experience. ✨ Features • Customize what you want to watch and skip the rest • Change the playback speed • Customize your keyboard shortcuts • Multiple color themes • Screenshots • Contribute timestamps and episode info for the community 🌐 Streaming Services • Crunchyroll • Aniwave • Aniwatch With more coming soon! ☔ Safe The extension is open sourced! https://github.com/anime-skip/web-extension 💕 Enjoying Anime Skip? Leave a 5 star review! Reviews help build trust and attract new users, which means more timestamps!
Βασικές Πληροφορίες Επέκτασης
Όνομα | Anime Skip Player |
ID | mgmdkjcljneegjfajchedjpdhbadklcf |
Επίσημο URL | https://chromewebstore.google.com/detail/anime-skip-player/mgmdkjcljneegjfajchedjpdhbadklcf |
Περιγραφή | Custom video player for anime streaming websites. Skip intros, outros, and more. |
Μέγεθος Αρχείου | 985 KB |
Αριθμός Εγκαταστάσεων | 1,230 |
Τρέχουσα Έκδοση | 2.0.3 |
Τελευταία Ενημέρωση | 2024-01-28 |
Ημερομηνία Δημοσίευσης | 2020-10-26 |
Αξιολόγηση | 4.54/5 Συνολικά 41 Αξιολογήσεις |
Προγραμματιστής | https://anime-skip.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://www.anime-skip.com/get-started |
Διεύθυνση URL της Σελίδας Βοήθειας | https://www.anime-skip.com/support |
URL της Σελίδας Πολιτικής Απορρήτου | https://anime-skip.com/docs/policies/privacy |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Anime Skip Player", "description": "Custom video player for anime streaming websites. Skip intros, outros, and more.", "version": "2.0.3", "icons": { "16": "icon\/16.png", "32": "icon\/32.png", "48": "icon\/48.png", "128": "icon\/128.png" }, "permissions": [ "storage", "activeTab", "contextMenus" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.anime-skip.com\/*" ], "js": [ "content-scripts\/anime-skip.js" ] }, { "matches": [ "*:\/\/aniwatch.to\/watch\/*" ], "all_frames": false, "js": [ "content-scripts\/aniwatch-helper.js" ] }, { "matches": [ "*:\/\/megacloud.tv\/e\/embed-*", "*:\/\/watchsb.com\/e\/*" ], "all_frames": true, "css": [ "content-scripts\/aniwatch-player.css" ], "js": [ "content-scripts\/aniwatch-player.js" ] }, { "matches": [ "*:\/\/aniwave.to\/watch\/*" ], "all_frames": false, "js": [ "content-scripts\/aniwave-helper.js" ] }, { "matches": [ "*:\/\/mcloud.bz\/e\/*", "*:\/\/vidplay.online\/e\/*", "*:\/\/www.mp4upload.com\/embed-*" ], "all_frames": true, "css": [ "content-scripts\/aniwave-player.css" ], "js": [ "content-scripts\/aniwave-player.js" ] }, { "matches": [ "*:\/\/www.crunchyroll.com\/*" ], "all_frames": false, "js": [ "content-scripts\/crunchyroll-helper.js" ] }, { "matches": [ "*:\/\/static.crunchyroll.com\/vilos-v2\/web\/vilos\/player.html" ], "all_frames": true, "css": [ "content-scripts\/crunchyroll-player.css" ], "js": [ "content-scripts\/crunchyroll-player.js" ] }, { "matches": [ "*:\/\/mcloud.bz\/e\/*", "*:\/\/megacloud.tv\/e\/embed-*", "*:\/\/static.crunchyroll.com\/vilos-v2\/web\/vilos\/player.html", "*:\/\/vidplay.online\/e\/*", "*:\/\/watchsb.com\/e\/*", "*:\/\/www.mp4upload.com\/embed-*" ], "all_frames": true, "run_at": "document_start", "js": [ "content-scripts\/keydown-blocker.js" ] } ] } |