Web Dev Kit

Tools to facilitate web development

Τι είναι το Web Dev Kit;

Το Web Dev Kit είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον james south, και η κύρια λειτουργία του είναι "Tools to facilitate web development".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Web Dev Kit

Λήψη αρχείων επέκτασης Web Dev Kit σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Every browser window can of course be minimized, maximized and restored down to its previous size.  Web Dev Kit augments those native options with two more (so far): dock in either the left or right half of the screen (I intend to expand these options soon).  Great for web development or coding along to tutorials!

Just click the icon to open the menu and then click the left or right arrow!  

Currently there are no options and no special permissions are required.

Promotional art includes laptop image (minus screen image and shadow) and Stout Scarab image by Pixabay users janjf93 and Mark Thomas, respectively.  All other elements either public domain or original.

This is an open source project and you can see the code and file issues here:

https://github.com/jamessouth/webdevkit

Thank you!                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Web Dev Kit Web Dev Kit
ID geedfiohcopjhgancckdfanhobhfbgmm
Επίσημο URL https://chromewebstore.google.com/detail/web-dev-kit/geedfiohcopjhgancckdfanhobhfbgmm
Περιγραφή Tools to facilitate web development
Μέγεθος Αρχείου 29.1 KB
Αριθμός Εγκαταστάσεων 40
Τρέχουσα Έκδοση 1.0.1
Τελευταία Ενημέρωση 2019-05-10
Ημερομηνία Δημοσίευσης 2019-05-10
Προγραμματιστής james south
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/jamessouth/webdevkit
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/jamessouth/webdevkit/issues
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Web Dev Kit",
    "short_name": "Web Dev Kit",
    "version": "1.0.1",
    "description": "Tools to facilitate web development",
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/wdk16.png",
            "32": "icons\/wdk32.png",
            "48": "icons\/wdk48.png",
            "128": "icons\/wdk128.png"
        }
    },
    "icons": {
        "16": "icons\/wdk16.png",
        "32": "icons\/wdk32.png",
        "48": "icons\/wdk48.png",
        "128": "icons\/wdk128.png"
    },
    "manifest_version": 2
}