Problem To Pickle

Replaces the word 'problem' with word 'pickle' every where in the text on web page for each web site.

Co to jest Problem To Pickle?

Problem To Pickle to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Replaces the word 'problem' with word 'pickle' every where in the text on web page for each web site.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Problem To Pickle

Pobierz pliki rozszerzeń Problem To Pickle 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

                        Does it ever feel like there are too many problems in the world? Don't worry, Design Pickle is here to help.

Install this simple extension and all of your problems will turn into delicious pickles!                    

Podstawowe informacje o rozszerzeniu

Nazwa Problem To Pickle Problem To Pickle
ID cflkfnipolmhhpjamgipagfbkadimgpb
Oficjalny URL https://chromewebstore.google.com/detail/problem-to-pickle/cflkfnipolmhhpjamgipagfbkadimgpb
Opis Replaces the word 'problem' with word 'pickle' every where in the text on web page for each web site.
Rozmiar pliku 18.12 KB
Liczba instalacji 33
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2020-04-01
Data Publikacji 2020-04-01
Ocena 5.00/5 Łącznie 4 Oceny
Deweloper Unknown
Typ Płatności free
Strona Rozszerzenia https://designpickle.com
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Problem To Pickle",
    "version": "1.0",
    "description": "Replaces the word 'problem' with word 'pickle' every where in the text on web page for each web site.",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon32.png"
    }
}