Awoo
Automatically find and auto-play Halloween-themed episodes on Netflix!
Что такое Awoo?
Awoo - это расширение Chrome, разработанное Darryl, и его основная функция - "Automatically find and auto-play Halloween-themed episodes on Netflix!".
Снимки экрана расширения
Скачать файл CRX расширения Awoo
Скачайте файлы расширений Awoo в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Inspired by old Halloween marathons like ABC's 13 Nights of Halloween, Awoo helps you automatically find a mix of Halloween-themed episodes of sitcoms, dramas, etc, on Netflix and plays them at random. When you're finished with an episode, it'll play the next. Основная информация о расширении
| Название | |
| ID | mcenajfoimechlkofjmcplnaneediadc |
| Официальный URL | https://chromewebstore.google.com/detail/awoo/mcenajfoimechlkofjmcplnaneediadc |
| Описание | Automatically find and auto-play Halloween-themed episodes on Netflix! |
| Размер файла | 2.47 MB |
| Количество установок | 25 |
| Текущая Версия | 0.1 |
| Последнее Обновление | 2016-10-21 |
| Дата публикации | 2016-10-20 |
| Рейтинг | 5.00/5 Всего 1 оценок |
| Разработчик | Darryl |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Awoo",
"description": "Automatically find and auto-play Halloween-themed episodes on Netflix!",
"version": "0.1",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon.png"
},
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html",
"default_title": "Stream a random Halloween-themed episode from Netflix."
},
"background": {
"scripts": [
"background-script.js"
]
},
"permissions": [
"storage",
"tabs"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.netflix.com\/*"
],
"js": [
"jquery.js",
"content.js"
]
}
]
} | |