Metal Gear Solid Words Swap

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

Что такое Metal Gear Solid Words Swap?

Metal Gear Solid Words Swap - это расширение Chrome, разработанное actual_vale, и его основная функция - "Changes words in the websites you visit to be Metal Gear themed".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Metal Gear Solid Words Swap

Скачайте файлы расширений Metal Gear Solid Words Swap в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                                            

Основная информация о расширении

Название Metal Gear Solid Words Swap Metal Gear Solid Words Swap
ID oakehbnanolbmgdbocehdljlbdgknblc
Официальный URL https://chrome.google.com/webstore/detail/metal-gear-solid-words-sw/oakehbnanolbmgdbocehdljlbdgknblc
Описание Changes words in the websites you visit to be Metal Gear themed
Размер файла 48.88 KB
Количество установок 35
Текущая Версия 1.0.1
Последнее Обновление 2017-07-23
Дата публикации 2017-07-23
Рейтинг 1.00/5 Всего 2 оценок
Разработчик actual_vale
Тип оплаты free
Официальный сайт расширения http://mgsshitpostgenerator.tumblr.com/
Поддерживаемые языки 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"
    ]
}