Crossdart Chrome Extension
Adds 'Go to definition' and 'Find Usages' functionality for Dart packages on Github
Qu'est-ce que Crossdart Chrome Extension ?
Crossdart Chrome Extension est une extension Chrome développée par https://crossdart.info, et sa fonction principale est "Adds 'Go to definition' and 'Find Usages' functionality for Dart packages on Github".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Crossdart Chrome Extension
Téléchargez les fichiers d'extension Crossdart Chrome Extension 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
This extension adds hyperlinks to your Dart code on Github. You'll be able to click to the methods, variables or classes and go to their definitions, and also click to the declarations to find out where they are used at. It works both for tree views and pull requests, so whenever someone sends you a pull request, you'll be able to review it more efficiently, since you actually can click to the methods and see where they come from. You can check https://github.com/astashov/crossdart-chrome-extension for README, source code and details how to use it for very private projects, when you don't want to send your source code to CrossDart servers, but still want to use the plugin.
Informations de Base sur l'Extension
Nom | Crossdart Chrome Extension |
ID | jmdjoliiaibifkklhipgmnciiealomhd |
URL Officiel | https://chromewebstore.google.com/detail/crossdart-chrome-extensio/jmdjoliiaibifkklhipgmnciiealomhd |
Description | Adds 'Go to definition' and 'Find Usages' functionality for Dart packages on Github |
Taille du Fichier | 24.83 KB |
Nombre d'Installations | 45 |
Version Actuelle | 0.3.0 |
Dernière Mise à Jour | 2016-06-06 |
Date de Publication | 2016-06-06 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | https://crossdart.info |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/astashov/crossdart-chrome-extension |
URL de la Page d'Aide | https://github.com/astashov/crossdart-chrome-extension |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Crossdart Chrome Extension", "version": "0.3.0", "description": "Adds 'Go to definition' and 'Find Usages' functionality for Dart packages on Github", "author": "Anton Astashov", "background": { "scripts": [ "background.js" ], "persistent": false }, "icons": { "128": "icon128.png" }, "permissions": [ "activeTab" ], "page_action": { "default_icon": "icon38.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "constants.js", "utils.js", "path.js", "errors.js", "status.js", "request.js", "tooltip.js", "github.js", "github\/tree_path.js", "github\/pull_path.js", "crossdart\/pull.js", "crossdart\/tree.js", "location_change_detector.js", "crossdart.js" ], "css": [ "crossdart.css", "tooltip.css" ] } ] } |