Web Dev Kit

Tools to facilitate web development

Qu'est-ce que Web Dev Kit ?

Web Dev Kit est une extension Chrome développée par james south, et sa fonction principale est "Tools to facilitate web development".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Web Dev Kit

Téléchargez les fichiers d'extension Web Dev Kit au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom Web Dev Kit Web Dev Kit
ID geedfiohcopjhgancckdfanhobhfbgmm
URL Officiel https://chromewebstore.google.com/detail/web-dev-kit/geedfiohcopjhgancckdfanhobhfbgmm
Description Tools to facilitate web development
Taille du Fichier 29.1 KB
Nombre d'Installations 40
Version Actuelle 1.0.1
Dernière Mise à Jour 2019-05-10
Date de Publication 2019-05-10
Développeur james south
Type de Paiement free
Site Web de l'Extension https://github.com/jamessouth/webdevkit
URL de la Page d'Aide https://github.com/jamessouth/webdevkit/issues
Langues Prises en Charge 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
}