Coding Interview Timer
A timer to track your progress for practice coding interview questions online.
Τι είναι το Coding Interview Timer;
Το Coding Interview Timer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Tek Dev, και η κύρια λειτουργία του είναι "A timer to track your progress for practice coding interview questions online.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Coding Interview Timer
Λήψη αρχείων επέκτασης Coding Interview Timer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
A simple tool to track your progress to solve coding/technical interview questions. There is a timer (45 or 30 minutes for easy and medium questions) and a stage progression bar to indicate which problem solving stage you should be.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Coding Interview Timer |
ID | ehlokjblibonmhonjhhmffclbhapkmnk |
Επίσημο URL | https://chromewebstore.google.com/detail/coding-interview-timer/ehlokjblibonmhonjhhmffclbhapkmnk |
Περιγραφή | A timer to track your progress for practice coding interview questions online. |
Μέγεθος Αρχείου | 365 KB |
Αριθμός Εγκαταστάσεων | 136 |
Τρέχουσα Έκδοση | 0.1.0 |
Τελευταία Ενημέρωση | 2020-08-04 |
Ημερομηνία Δημοσίευσης | 2020-08-04 |
Αξιολόγηση | 5.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | Tek Dev |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://www.buymeacoffee.com/interviewtimer |
Διεύθυνση URL της Σελίδας Βοήθειας | https://www.buymeacoffee.com/interviewtimer |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Coding Interview Timer", "description": "A timer to track your progress for practice coding interview questions online.", "version": "0.1.0", "homepage_url": "https:\/\/www.buymeacoffee.com\/interviewtimer", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon128.png", "default_title": "Coding Interview Timer" }, "background": { "scripts": [ ".\/jquery.js", "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/leetcode.com\/*", "https:\/\/www.hackerrank.com\/*" ], "all_frames": true, "js": [ ".\/content.js", ".\/jquery.js" ], "run_at": "document_end" } ], "permissions": [ "tabs" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "web_accessible_resources": [ "index.html", "\/static\/*" ] } |