Crash pitch tool

Pitch any job you find on the web using Crash.co

Что такое Crash pitch tool?

Crash pitch tool - это расширение Chrome, разработанное crash.co, и его основная функция - "Pitch any job you find on the web using Crash.co".

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

screenshot

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

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

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

                        Use this extension to save job opportunities you might want to pitch, to your Crash dashboard.                    

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

Название Crash pitch tool Crash pitch tool
ID njicebecehmpjfanalngegpgmgllpaim
Официальный URL https://chrome.google.com/webstore/detail/crash-pitch-tool/njicebecehmpjfanalngegpgmgllpaim
Описание Pitch any job you find on the web using Crash.co
Размер файла 56.88 KB
Количество установок 365
Текущая Версия 0.1.2
Последнее Обновление 2020-09-09
Дата публикации 2020-04-29
Рейтинг 5.00/5 Всего 1 оценок
Разработчик crash.co
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://crash.co
URL страницы помощи https://crash.co/help
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Crash pitch tool",
    "description": "Pitch any job you find on the web using Crash.co",
    "version": "0.1.2",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/localhost\/*",
            "https:\/\/crash.co\/*"
        ]
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}