Metal Gear Solid Words Swap

Changes words in the websites you visit to be Metal Gear themed

Co to jest Metal Gear Solid Words Swap?

Metal Gear Solid Words Swap to rozszerzenie Chrome opracowane przez actual_vale, a jego główną funkcją jest „Changes words in the websites you visit to be Metal Gear themed”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Metal Gear Solid Words Swap

Pobierz pliki rozszerzeń Metal Gear Solid Words Swap 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

                                            

Podstawowe informacje o rozszerzeniu

Nazwa Metal Gear Solid Words Swap Metal Gear Solid Words Swap
ID oakehbnanolbmgdbocehdljlbdgknblc
Oficjalny URL https://chrome.google.com/webstore/detail/metal-gear-solid-words-sw/oakehbnanolbmgdbocehdljlbdgknblc
Opis Changes words in the websites you visit to be Metal Gear themed
Rozmiar pliku 48.88 KB
Liczba instalacji 35
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2017-07-23
Data Publikacji 2017-07-23
Ocena 1.00/5 Łącznie 2 Oceny
Deweloper actual_vale
Typ Płatności free
Strona Rozszerzenia http://mgsshitpostgenerator.tumblr.com/
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Metal Gear Solid Words Swap",
    "description": "Changes words in the websites you visit to be Metal Gear themed",
    "version": "1.0.1",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "wordsswap.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "activeTab",
        "https:\/\/raw.githubusercontent.com\/actualvale\/mgswordswap\/master\/wordsswap.json",
        "storage"
    ]
}