Imgur Valentine's Day Replacer

Replaces Valentines day posts from imgur with the money cat...

Co to jest Imgur Valentine's Day Replacer?

Imgur Valentine's Day Replacer to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Replaces Valentines day posts from imgur with the money cat...”.

Pobierz plik CRX rozszerzenia Imgur Valentine's Day Replacer

Pobierz pliki rozszerzeń Imgur Valentine's Day Replacer 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

                        It's valentine's day season for the internet. If you just broke up with someone, and don't want to see posts with valentine's day in them on imgur use this plugin. It will replace the text and image with a cat.                    

Podstawowe informacje o rozszerzeniu

Nazwa Imgur Valentine's Day Replacer Imgur Valentine's Day Replacer
ID hneogcmeohdbecpjecfmpnfpkdkmfjbf
Oficjalny URL https://chromewebstore.google.com/detail/imgur-valentines-day-repl/hneogcmeohdbecpjecfmpnfpkdkmfjbf
Opis Replaces Valentines day posts from imgur with the money cat...
Rozmiar pliku 21.19 KB
Liczba instalacji 17
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2016-02-05
Data Publikacji 2016-02-05
Deweloper Unknown
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Imgur Valentine's Day Replacer",
    "description": "Replaces Valentines day posts from imgur with the money cat...",
    "version": "1.0",
    "icons": {
        "16": "icon.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "replace valentine with cats"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/imgur.com\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "*:\/\/imgur.com\/*",
        "webRequest",
        "tabs",
        "*:\/\/s.imgur.com\/*"
    ]
}