Wimp Autoplay
An autoplayer for wimp.
Τι είναι το Wimp Autoplay;
Το Wimp Autoplay είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Ashkan, και η κύρια λειτουργία του είναι "An autoplayer for wimp.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Wimp Autoplay
Λήψη αρχείων επέκτασης Wimp Autoplay σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This a simple autoplaying agent for Wimp which adds two buttons below the video player which control autoplaying and how to autoplay (play next, previous, or random video after). This is a simple beta for now, if there is enough interest in it, then I will add features to it. Possible features include: keyboard navigation and same page loading of videos. However, I may also just make a website that is a better interface for Wimp, which may be better.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | oilleiaajfdnnclncmnonndldafmlpdl |
Επίσημο URL | https://chrome.google.com/webstore/detail/wimp-autoplay/oilleiaajfdnnclncmnonndldafmlpdl |
Περιγραφή | An autoplayer for wimp. |
Μέγεθος Αρχείου | 32.36 KB |
Αριθμός Εγκαταστάσεων | 109 |
Τρέχουσα Έκδοση | 0.13 |
Τελευταία Ενημέρωση | 2014-01-13 |
Ημερομηνία Δημοσίευσης | 2014-01-13 |
Αξιολόγηση | 5.00/5 Συνολικά 4 Αξιολογήσεις |
Προγραμματιστής | Ashkan |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Wimp Autoplay", "description": "An autoplayer for wimp.", "version": "0.13", "permissions": [ "http:\/\/www.wimp.com\/" ], "icons": { "16": "favicon16.png", "48": "favicon48.png", "128": "favicon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/www.wimp.com\/*" ], "js": [ "inject.js" ], "run_at": "document_idle" } ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "web_accessible_resources": [ "localstorage.js", "tracking.js" ] } |