Porgify

Replaces all images on all pages with images of Porg.

Was ist Porgify?

Porgify ist eine Chrome-Erweiterung, die von liamrosenfeld entwickelt wurde, und ihr Hauptmerkmal ist "Replaces all images on all pages with images of Porg.".

Erweiterungsscreenshots

screenshot

Porgify-Erweiterungs-CRX-Datei herunterladen

Laden Sie Porgify-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        A chrome extension that replaces every image with one of porg

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

Grundlegende Informationen zur Erweiterung

Name Porgify Porgify
ID anohiacdcfnoceaialpnnbbdcecamfkl
Offizielle URL https://chromewebstore.google.com/detail/porgify/anohiacdcfnoceaialpnnbbdcecamfkl
Beschreibung Replaces all images on all pages with images of Porg.
Dateigröße 523 KB
Installationsanzahl 75
Aktuelle Version 2.0.0
Letztes Update 2021-03-12
Veröffentlichungsdatum 2018-04-16
Bewertung 5.00/5 Insgesamt 10 Bewertungen
Entwickler liamrosenfeld
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/liamrosenfeld/porgify
Hilfeseite URL https://github.com/liamrosenfeld/porgify/issues
Unterstützte Sprachen 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]"
        }
    }
}