Crossdart Chrome Extension

Adds 'Go to definition' and 'Find Usages' functionality for Dart packages on Github

Crossdart Chrome Extension là gì?

Crossdart Chrome Extension là một tiện ích mở rộng Chrome được phát triển bởi https://crossdart.info, và tính năng chính của nó là "Adds 'Go to definition' and 'Find Usages' functionality for Dart packages on Github".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Crossdart Chrome Extension

Tải xuống các tệp mở rộng Crossdart Chrome Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Crossdart Chrome Extension Crossdart Chrome Extension
ID jmdjoliiaibifkklhipgmnciiealomhd
URL Chính Thức https://chromewebstore.google.com/detail/crossdart-chrome-extensio/jmdjoliiaibifkklhipgmnciiealomhd
Mô tả Adds 'Go to definition' and 'Find Usages' functionality for Dart packages on Github
Kích Thước Tệp 24.83 KB
Số Lần Cài Đặt 45
Phiên Bản Hiện Tại 0.3.0
Cập Nhật Lần Cuối 2016-06-06
Ngày Phát Hành 2016-06-06
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://crossdart.info
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/astashov/crossdart-chrome-extension
URL Trang Trợ Giúp https://github.com/astashov/crossdart-chrome-extension
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}