Profile Search for Instagram (Unofficial)

Chrome Extension for highlighting any Instagram username text on any website & right clicking to open that user's Instagram profile.

Что такое Profile Search for Instagram (Unofficial)?

Profile Search for Instagram (Unofficial) - это расширение Chrome, разработанное http://jowo.co, и его основная функция - "Chrome Extension for highlighting any Instagram username text on any website & right clicking to open that user's Instagram profile.".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения Profile Search for Instagram (Unofficial)

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

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

                                            

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

Название Profile Search for Instagram (Unofficial) Profile Search for Instagram (Unofficial)
ID ohbdjjgonipbnlgfleogigljggmoogap
Официальный URL https://chrome.google.com/webstore/detail/profile-search-for-instag/ohbdjjgonipbnlgfleogigljggmoogap
Описание Chrome Extension for highlighting any Instagram username text on any website & right clicking to open that user's Instagram profile.
Размер файла 26.26 KB
Количество установок 501
Текущая Версия 1.5
Последнее Обновление 2022-02-05
Дата публикации 2020-08-17
Рейтинг 5.00/5 Всего 10 оценок
Разработчик http://jowo.co
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://jowo.co
URL страницы помощи https://jowo.co/apps/forms/support/index.html
URL страницы политики конфиденциальности https://jowo.co/apps/privacypolicyterms/privacy.html
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Profile Search for Instagram (Unofficial)",
    "description": "Chrome Extension for highlighting any Instagram username text on any website & right clicking to open that user's Instagram profile.",
    "version": "1.5",
    "icons": {
        "128": "images\/icons\/icon128.png",
        "48": "images\/icons\/icon48.png",
        "16": "images\/icons\/icon16.png"
    },
    "browser_action": {
        "default_icon": "images\/icons\/icon16.png",
        "default_popup": "html\/popup.html"
    },
    "background": {
        "scripts": [
            "js\/eventPage.js"
        ],
        "persistent": true
    },
    "web_accessible_resources": [
        "content.js",
        "content.css"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.instagram.com\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "css": [
                "css\/content.css"
            ],
            "all_frames": true
        }
    ],
    "options_page": "html\/options.html",
    "permissions": [
        "storage",
        "contextMenus",
        "https:\/\/*.instagram.com\/*"
    ]
}