Crash pitch tool

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

Co to jest Crash pitch tool?

Crash pitch tool to rozszerzenie Chrome opracowane przez crash.co, a jego główną funkcją jest „Pitch any job you find on the web using Crash.co”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Crash pitch tool

Pobierz pliki rozszerzeń Crash pitch tool w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Crash pitch tool Crash pitch tool
ID njicebecehmpjfanalngegpgmgllpaim
Oficjalny URL https://chrome.google.com/webstore/detail/crash-pitch-tool/njicebecehmpjfanalngegpgmgllpaim
Opis Pitch any job you find on the web using Crash.co
Rozmiar pliku 56.88 KB
Liczba instalacji 365
Aktualna Wersja 0.1.2
Ostatnia Aktualizacja 2020-09-09
Data Publikacji 2020-04-29
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper crash.co
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://crash.co
Adres URL Strony Pomocy https://crash.co/help
Obsługiwane Języki 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"
            ]
        }
    ]
}