Stanfurd

Replace Stanford with Stanfurd.

Co to jest Stanfurd?

Stanfurd to rozszerzenie Chrome opracowane przez kelukelugames, a jego główną funkcją jest „Replace Stanford with Stanfurd.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Stanfurd

Pobierz pliki rozszerzeń Stanfurd 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

                        The world misspells Stanfurd as Stanford. As a proud Golden Bear from Berkeley, I feel obligated to fix this mistake.

Version 1.2 update.
Also replace title.
Replace logo in stanfurd.edu

Version 1.1 update.
Now works on google, facebook, etc.
Boxscore shows FURD instead of STAN.

Link to source code.
https://github.com/kelukelugames/stanfurd

Not working? Try these steps.
1. Type chrome://extensions/ into the browser address bar.
2. Find the stanfurd extension and make sure it is enabled.
3. Restart the browser.
4. Run a test by going to https://en.wikipedia.org/wiki/Stanford_University                    

Podstawowe informacje o rozszerzeniu

Nazwa Stanfurd Stanfurd
ID ojcgdgiceeaoegeknmfihojmimdhohkh
Oficjalny URL https://chromewebstore.google.com/detail/stanfurd/ojcgdgiceeaoegeknmfihojmimdhohkh
Opis Replace Stanford with Stanfurd.
Rozmiar pliku 3.72 KB
Liczba instalacji 76
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2015-09-07
Data Publikacji 2015-09-06
Ocena 5.00/5 Łącznie 24 Oceny
Deweloper kelukelugames
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Stanfurd",
    "version": "1.2",
    "description": "Replace Stanford with Stanfurd.",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "replaceText.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/www.stanford.edu\/*"
            ],
            "js": [
                "replaceImage.js"
            ],
            "run_at": "document_end"
        }
    ]
}