Party Parrot Party Time

Activates Maximum Party

Co to jest Party Parrot Party Time?

Party Parrot Party Time to rozszerzenie Chrome opracowane przez Joshua Toth, a jego główną funkcją jest „Activates Maximum Party”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Party Parrot Party Time

Pobierz pliki rozszerzeń Party Parrot Party Time w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Party Parrot Party Time Party Parrot Party Time
ID hbhkompcohiijecfoaohogmkpemkdnmk
Oficjalny URL https://chrome.google.com/webstore/detail/party-parrot-party-time/hbhkompcohiijecfoaohogmkpemkdnmk
Opis Activates Maximum Party
Rozmiar pliku 130 KB
Liczba instalacji 813
Aktualna Wersja 1.1.1
Ostatnia Aktualizacja 2016-10-14
Data Publikacji 2016-10-14
Ocena 4.75/5 Łącznie 12 Oceny
Deweloper Joshua Toth
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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\/*"
    ]
}