WeenieMe

Changes random words on the page into the word 'Weenie' and some images to a picture of a hotdog

Was ist WeenieMe?

WeenieMe ist eine Chrome-Erweiterung, die von mwvanmeurs entwickelt wurde, und ihr Hauptmerkmal ist "Changes random words on the page into the word 'Weenie' and some images to a picture of a hotdog".

Erweiterungsscreenshots

screenshot
screenshot

WeenieMe-Erweiterungs-CRX-Datei herunterladen

Laden Sie WeenieMe-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

                        WeenieMe is a simple extension used to play pranks on your friends, family or co-workers. All it does it swap random words on the page with the word “Weenie” and will replace certain images on the page with those of — you guessed it — a weenie. Sit back and observe the confusion on the victims face as the name “Kim Kardashian” may mysteriously become “Kim Weenie.”

If you got a kick out of this, get me a beer as a thanks! 
goo.gl/l1BZNG                    

Grundlegende Informationen zur Erweiterung

Name WeenieMe WeenieMe
ID kkaloeemimggiofacanhfmhcemaiolkf
Offizielle URL https://chrome.google.com/webstore/detail/weenieme/kkaloeemimggiofacanhfmhcemaiolkf
Beschreibung Changes random words on the page into the word 'Weenie' and some images to a picture of a hotdog
Dateigröße 107 KB
Installationsanzahl 247
Aktuelle Version 0.0.11
Letztes Update 2015-09-25
Veröffentlichungsdatum 2015-09-25
Bewertung 3.25/5 Insgesamt 4 Bewertungen
Entwickler mwvanmeurs
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.0.11",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/weenie1.jpg",
        "128": "images\/weenie4.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "web_accessible_resources": [
        "images\/*",
        "\/images\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}