Porgify

Replaces all images on all pages with images of Porg.

Co to jest Porgify?

Porgify to rozszerzenie Chrome opracowane przez liamrosenfeld, a jego główną funkcją jest „Replaces all images on all pages with images of Porg.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Porgify

Pobierz pliki rozszerzeń Porgify 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

                        A chrome extension that replaces every image with one of porg

GitHub Repo:
https://github.com/liamrosenfeld/porgify                    

Podstawowe informacje o rozszerzeniu

Nazwa Porgify Porgify
ID anohiacdcfnoceaialpnnbbdcecamfkl
Oficjalny URL https://chromewebstore.google.com/detail/porgify/anohiacdcfnoceaialpnnbbdcecamfkl
Opis Replaces all images on all pages with images of Porg.
Rozmiar pliku 523 KB
Liczba instalacji 75
Aktualna Wersja 2.0.0
Ostatnia Aktualizacja 2021-03-12
Data Publikacji 2018-04-16
Ocena 5.00/5 Łącznie 10 Oceny
Deweloper liamrosenfeld
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/liamrosenfeld/porgify
Adres URL Strony Pomocy https://github.com/liamrosenfeld/porgify/issues
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "js": [
                "porgify\/porgify.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ],
    "background": {
        "scripts": [
            "porgify\/bg.js"
        ]
    },
    "description": "__MSG_appDesc__",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "short_name": "__MSG_appName__",
    "version": "2.0.0",
    "default_locale": "en",
    "icons": {
        "128": "porgify\/logo128.png",
        "16": "porgify\/logo16.png"
    },
    "permissions": [
        "storage",
        "contextMenus",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "options_ui": {
        "page": "porgify\/options\/options.html",
        "chrome_style": true
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}