Instagram Comment Picker

Random Instagram Comments Picker for Giveaways and Contests.

Что такое Instagram Comment Picker?

Instagram Comment Picker - это расширение Chrome, разработанное https://comment-picker.com, и его основная функция - "Random Instagram Comments Picker for Giveaways and Contests.".

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

screenshot

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

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

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

                        Create your free Instagram Giveaways and contests online for free. Pick a random winner from your Instagram photos and videos with comment-picker.                    

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

Название Instagram Comment Picker Instagram Comment Picker
ID iooncalbeihfjphmpijadfcogbnfnlbj
Официальный URL https://chrome.google.com/webstore/detail/instagram-comment-picker/iooncalbeihfjphmpijadfcogbnfnlbj
Описание Random Instagram Comments Picker for Giveaways and Contests.
Размер файла 75.47 KB
Количество установок 787
Текущая Версия 1.0
Последнее Обновление 2021-07-08
Дата публикации 2021-07-08
Рейтинг 3.40/5 Всего 5 оценок
Разработчик https://comment-picker.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://comment-picker.com/
URL страницы помощи https://comment-picker.com/contact.php
URL страницы политики конфиденциальности https://comment-picker.com/privacy-policy.php
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Instagram Comment Picker",
    "description": "Random Instagram Comments Picker for Giveaways and Contests.",
    "version": "1.0",
    "manifest_version": 2,
    "background": {
        "service_worker": "background.js",
        "presistent": false
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "externally_connectable": {
        "matches": [
            "http:\/\/localhost:8000\/*",
            "https:\/\/comment-picker.com\/*",
            "https:\/\/www.comment-picker.com\/*"
        ]
    },
    "permissions": [
        "https:\/\/*.instagram.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/localhost:8000\/*",
                "https:\/\/comment-picker.com\/*",
                "https:\/\/www.comment-picker.com\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    }
}