Content Finder

The easiest way to identify the endpoint where the content is coming from.

Что такое Content Finder?

Content Finder - это расширение Chrome, разработанное White Tower Software LLC, и его основная функция - "The easiest way to identify the endpoint where the content is coming from.".

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

screenshot
screenshot

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

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

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

                                            

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

Название Content Finder Content Finder
ID bbamdlhecgcmakehkkolcdgpanlkjapc
Официальный URL https://chromewebstore.google.com/detail/content-finder/bbamdlhecgcmakehkkolcdgpanlkjapc
Описание The easiest way to identify the endpoint where the content is coming from.
Размер файла 884 KB
Количество установок 100
Текущая Версия 1.1
Последнее Обновление 2018-03-07
Дата публикации 2018-03-07
Рейтинг 5.00/5 Всего 1 оценок
Разработчик White Tower Software LLC
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Content Finder",
    "description": "The easiest way to identify the endpoint where the content is coming from.",
    "version": "1.1",
    "author": "White Tower Software LLC",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Content Finder"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "contentscript.js"
            ],
            "css": [
                "main.css",
                "fonts\/css\/fontawesome-all.min.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "inject.js",
        "fonts\/webfonts\/*"
    ]
}