Let There Be Puppies

Searches the loaded page for images of keywords.. and replaces them with Puppies!

Что такое Let There Be Puppies?

Let There Be Puppies - это расширение Chrome, разработанное limcolin1984, и его основная функция - "Searches the loaded page for images of keywords.. and replaces them with Puppies!".

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

screenshot

Скачать файл CRX расширения Let There Be Puppies

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

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

                        Searches the loaded page for images of your keywords.. and replaces them with Puppies.
Works by replacing images with src or alt-text containing user-selected keywords.

1. Enter keywords via the icon beside your browser address bar or extension options.
2. Let There Be Puppies!                    

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

Название Let There Be Puppies Let There Be Puppies
ID knklpopblbilnogkigmnehcknipcipjd
Официальный URL https://chromewebstore.google.com/detail/let-there-be-puppies/knklpopblbilnogkigmnehcknipcipjd
Описание Searches the loaded page for images of keywords.. and replaces them with Puppies!
Размер файла 43.65 KB
Количество установок 20
Текущая Версия 1.1.1
Последнее Обновление 2016-12-11
Дата публикации 2016-12-11
Рейтинг 4.67/5 Всего 3 оценок
Разработчик limcolin1984
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "js": [
                "lettherebepuppies.js"
            ],
            "matches": [
                "http:\/\/*\/*"
            ]
        }
    ],
    "description": "Searches the loaded page for images of keywords.. and replaces them with Puppies!",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "manifest_version": 2,
    "name": "Let There Be Puppies",
    "version": "1.1.1",
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html"
    },
    "browser_action": {
        "default_icon": {
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_popup": "options.html",
        "default_title": "Click here to enter keyword"
    }
}