Nicknamer

Replace your friends' or enemies' names with their nicknames.

Что такое Nicknamer?

Nicknamer - это расширение Chrome, разработанное https://www.molanglois.com, и его основная функция - "Replace your friends' or enemies' names with their nicknames.".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения Nicknamer

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

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

                        The Nicknamer extension enables you to replace text on any web pages you are visiting.

Simply type in the name or text you want to transform and the name it is transformed to and click "+". You will see the changes in your browser. The list of names is saved with your browser and works whenever you open one. You can clear the list by clicking "-" button. 

**Prank tip: Right click the extension and choose "Hide in the Chrome Menu". **                    

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

Название Nicknamer Nicknamer
ID ahhpgbiejgpebbokpbgcenooehhcnbjd
Официальный URL https://chromewebstore.google.com/detail/nicknamer/ahhpgbiejgpebbokpbgcenooehhcnbjd
Описание Replace your friends' or enemies' names with their nicknames.
Размер файла 39.39 KB
Количество установок 396
Текущая Версия 1.0
Последнее Обновление 2016-04-10
Дата публикации 2016-04-10
Рейтинг 3.00/5 Всего 2 оценок
Разработчик https://www.molanglois.com
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Nicknamer ",
    "description": "Replace your friends' or enemies' names with their nicknames.",
    "version": "1.0",
    "permissions": [
        "tabs",
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-2.2.3.min.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_title": "Nicknamer",
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/icon128.png",
        "48": "images\/icon128.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 2
}