Crash pitch tool

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

Was ist Crash pitch tool?

Crash pitch tool ist eine Chrome-Erweiterung, die von crash.co entwickelt wurde, und ihr Hauptmerkmal ist "Pitch any job you find on the web using Crash.co".

Erweiterungsscreenshots

screenshot

Crash pitch tool-Erweiterungs-CRX-Datei herunterladen

Laden Sie Crash pitch tool-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Crash pitch tool Crash pitch tool
ID njicebecehmpjfanalngegpgmgllpaim
Offizielle URL https://chrome.google.com/webstore/detail/crash-pitch-tool/njicebecehmpjfanalngegpgmgllpaim
Beschreibung Pitch any job you find on the web using Crash.co
Dateigröße 56.88 KB
Installationsanzahl 365
Aktuelle Version 0.1.2
Letztes Update 2020-09-09
Veröffentlichungsdatum 2020-04-29
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler crash.co
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://crash.co
Hilfeseite URL https://crash.co/help
Unterstützte Sprachen 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"
            ]
        }
    ]
}