WeenieMe

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

O que é WeenieMe?

WeenieMe é uma extensão do Chrome desenvolvida por mwvanmeurs, e sua principal característica é "Changes random words on the page into the word 'Weenie' and some images to a picture of a hotdog".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão WeenieMe

Baixe arquivos de extensão WeenieMe no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome WeenieMe WeenieMe
ID kkaloeemimggiofacanhfmhcemaiolkf
URL Oficial https://chrome.google.com/webstore/detail/weenieme/kkaloeemimggiofacanhfmhcemaiolkf
Descrição Changes random words on the page into the word 'Weenie' and some images to a picture of a hotdog
Tamanho do Arquivo 107 KB
Contagem de Instalações 247
Versão Atual 0.0.11
Última Atualização 2015-09-25
Data de Publicação 2015-09-25
Classificação 3.25/5 Total de 4 Avaliações
Desenvolvedor mwvanmeurs
Tipo de Pagamento free
Idiomas Suportados 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
        }
    ]
}