Secret Old Man

Hides a picture of an old man somewhere in every web page

Co to jest Secret Old Man?

Secret Old Man to rozszerzenie Chrome opracowane przez Xavier Maruff, a jego główną funkcją jest „Hides a picture of an old man somewhere in every web page”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Secret Old Man

Pobierz pliki rozszerzeń Secret Old Man 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

                        This extension hides a tiny little picture of an old man somewhere on every page you visit, and it's your job to find him and click on him!                    

Podstawowe informacje o rozszerzeniu

Nazwa Secret Old Man Secret Old Man
ID bcipoegbllpiaagnbbjbigienljnllkg
Oficjalny URL https://chromewebstore.google.com/detail/secret-old-man/bcipoegbllpiaagnbbjbigienljnllkg
Opis Hides a picture of an old man somewhere in every web page
Rozmiar pliku 1.17 MB
Liczba instalacji 129
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2021-04-19
Data Publikacji 2021-04-19
Ocena 5.00/5 Łącznie 8 Oceny
Deweloper Xavier Maruff
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/Xavier-Maruff/Secret-Old-Man
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Secret Old Man",
    "description": "Hides a picture of an old man somewhere in every web page",
    "version": "0.1",
    "icons": {
        "16": "icons\/icon_16.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/icon_16.png",
            "48": "icons\/icon_48.png",
            "128": "icons\/icon_128.png"
        },
        "default_popup": "popup\/popup.html",
        "default_title": "Secret Old Man"
    },
    "background": {
        "scripts": [
            "background\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content\/content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "icons\/icon.png"
    ]
}