JSKit
Load JavaScript (and CSS) libraries into any page/tab, via cdnjs.com or custom url
Qu'est-ce que JSKit ?
JSKit est une extension Chrome développée par Janek Lasocki-Biczysko, et sa fonction principale est "Load JavaScript (and CSS) libraries into any page/tab, via cdnjs.com or custom url".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension JSKit
Téléchargez les fichiers d'extension JSKit 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
Menubar action that helps you load JavaScript and CSS libraries into your open pages/tabs. Libraries are pulled from www.cdnjs.com
Informations de Base sur l'Extension
Nom | |
ID | aopfdhabfojdkgcmibiegfhpfkcokmdg |
URL Officiel | https://chrome.google.com/webstore/detail/jskit/aopfdhabfojdkgcmibiegfhpfkcokmdg |
Description | Load JavaScript (and CSS) libraries into any page/tab, via cdnjs.com or custom url |
Taille du Fichier | 99.36 KB |
Nombre d'Installations | 217 |
Version Actuelle | 0.4.2 |
Dernière Mise à Jour | 2015-02-24 |
Date de Publication | 2015-02-24 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | Janek Lasocki-Biczysko |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/janeklb/JSKit |
URL de la Page d'Aide | https://github.com/janeklb/JSKit/issues?state=open |
Langues Prises en Charge | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "JSKit", "version": "0.4.2", "description": "Load JavaScript (and CSS) libraries into any page\/tab, via cdnjs.com or custom url", "permissions": [ "tabs" ], "background": { "scripts": [ "vendors\/jquery.min.js", "vendors\/underscore-min.js", "vendors\/backbone-min.js", "application.js", "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_script.js" ] } ], "icons": { "48": "48.png", "128": "128.png" }, "browser_action": { "default_icon": "icon.png", "default_title": "JSKit", "default_popup": "popup.html" }, "manifest_version": 2 } |