CoderPad

Schedule technical interviews with ease

Cos'è CoderPad?

CoderPad è un'estensione di Chrome sviluppata da CoderPad, e la sua funzione principale è "Schedule technical interviews with ease".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione CoderPad

Scarica i file di estensione CoderPad in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Create and link pads directly in Google Calendar or through the browser extension to help you schedule technical interviews.

CoderPad is a technical interview platform for leading development teams.  We help with every stage of the interview process.  Evaluate candidates through live, collaborative coding sessions through our online IDE that supports 30+ languages, screen them through asynchronous take-home assignments, and leverage our online whiteboard tool to chat through system design problems.                    

Informazioni di Base sull'Estensione

Nome CoderPad CoderPad
ID gggomabkbnhcbmlgfdabcpopfdgkoapn
URL Ufficiale https://chromewebstore.google.com/detail/coderpad/gggomabkbnhcbmlgfdabcpopfdgkoapn
Descrizione Schedule technical interviews with ease
Dimensione del File 1.25 MB
Conteggio Installazioni 331
Versione Corrente 1.2.0
Ultimo Aggiornamento 2023-10-24
Data di Pubblicazione 2022-08-04
Sviluppatore CoderPad
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://coderpad.io
URL della Pagina di Aiuto https://coderpad.io/contact-us
URL della Pagina della Politica sulla Privacy https://coderpad.io/privacy
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CoderPad",
    "description": "Schedule technical interviews with ease",
    "version": "1.2.0",
    "manifest_version": 3,
    "action": {
        "default_popup": "index.html",
        "default_title": "CoderPad"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/calendar.google.com\/*",
                "http:\/\/calendar.google.com\/*"
            ],
            "js": [
                ".\/static\/js\/googleCalendar.js"
            ],
            "css": [
                "googleCalendar.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "googleCalendar.html",
                "CPLogo.svg",
                "link.svg",
                "trash.svg",
                "warning.svg",
                "title.svg"
            ],
            "matches": [
                "https:\/\/calendar.google.com\/*",
                "http:\/\/calendar.google.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "logo128.png",
        "48": "logo128.png",
        "128": "logo128.png"
    },
    "permissions": [
        "storage"
    ]
}