Treehouse AutoPlay
Automatically play through all of the videos in a badge.
Treehouse AutoPlay क्या है?
Treehouse AutoPlay Matt West द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically play through all of the videos in a badge."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Treehouse AutoPlay एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension will automatically play the next video in the badge playlist when the current video finishes. Great for people that want to sit back and enjoy the videos without having to manually move on to the next video all of the time. ***** UPDATE v2 ***** Support for the updated Treehouse website. You can get involved in the development here: https://github.com/matt-west/treehouse-autoplay/ The 'treehouse' and 'mike the frog' logos are property of Treehouse Island, Inc.
एक्सटेंशन की मूल जानकारी
नाम | Treehouse AutoPlay |
ID | epcbdbkjnonaliagdjccjnoejpgdnjkm |
आधिकारिक URL | https://chromewebstore.google.com/detail/treehouse-autoplay/epcbdbkjnonaliagdjccjnoejpgdnjkm |
विवरण | Automatically play through all of the videos in a badge. |
फ़ाइल का आकार | 63.97 KB |
स्थापना संख्या | 520 |
वर्तमान संस्करण | 2.1 |
अंतिम अपडेट | 2018-03-23 |
प्रकाशन तिथि | 2018-03-23 |
रेटिंग | 3.67/5 कुल 9 रेटिंग्स |
डेवलपर | Matt West |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Treehouse AutoPlay", "version": "2.1", "description": "Automatically play through all of the videos in a badge.", "permissions": [ "http:\/\/teamtreehouse.com\/" ], "icons": { "128": "img\/icon.png" }, "background": { "page": "background.html" }, "browser_action": { "default_icon": "img\/inactive.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/teamtreehouse.com\/library\/*" ], "js": [ "js\/jquery-1.7.min.js", "js\/autoplay.js" ], "run_at": "document_start" } ] } |