Porgify

Replaces all images on all pages with images of Porg.

Wat is Porgify?

Porgify is een Chrome-extensie ontwikkeld door liamrosenfeld, en de belangrijkste functie is "Replaces all images on all pages with images of Porg.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Porgify

Download Porgify-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        A chrome extension that replaces every image with one of porg

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

Basisinformatie over de Extensie

Naam Porgify Porgify
ID anohiacdcfnoceaialpnnbbdcecamfkl
Officiële URL https://chromewebstore.google.com/detail/porgify/anohiacdcfnoceaialpnnbbdcecamfkl
Beschrijving Replaces all images on all pages with images of Porg.
Bestandsgrootte 523 KB
Aantal Installaties 75
Huidige Versie 2.0.0
Laatst Bijgewerkt 2021-03-12
Publicatiedatum 2018-04-16
Beoordeling 5.00/5 Totaal 10 Beoordelingen
Ontwikkelaar liamrosenfeld
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/liamrosenfeld/porgify
Help Pagina-URL https://github.com/liamrosenfeld/porgify/issues
Ondersteunde Talen 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]"
        }
    }
}