Party Parrot Party Time

Activates Maximum Party

Что такое Party Parrot Party Time?

Party Parrot Party Time - это расширение Chrome, разработанное Joshua Toth, и его основная функция - "Activates Maximum Party".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Party Parrot Party Time

Скачайте файлы расширений Party Parrot Party Time в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        At the click of a button all the images on your page become Party Parrots! 


---------


Visit http://cultofthepartyparrot.com/ for more party parrot fun!

Disclaimer: 

This was made for fun and I have no association with the cultofthepartyparrot.com website.

I do not own the images contained in this content. 

I'm not liable for any damages caused by this extension. yada yada                    

Основная информация о расширении

Название Party Parrot Party Time Party Parrot Party Time
ID hbhkompcohiijecfoaohogmkpemkdnmk
Официальный URL https://chrome.google.com/webstore/detail/party-parrot-party-time/hbhkompcohiijecfoaohogmkpemkdnmk
Описание Activates Maximum Party
Размер файла 130 KB
Количество установок 813
Текущая Версия 1.1.1
Последнее Обновление 2016-10-14
Дата публикации 2016-10-14
Рейтинг 4.75/5 Всего 12 оценок
Разработчик Joshua Toth
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Party Parrot Party Time",
    "description": "Activates Maximum Party",
    "version": "1.1.1",
    "browser_action": {
        "default_icon": "parrot.png",
        "default_title": "Activate Maximum Party"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "",
        "storage"
    ],
    "background": {
        "scripts": [
            "partyTime.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "partyTimeOnLoad.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "parrots\/*"
    ]
}