Crossdart Chrome Extension

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

什麼是Crossdart Chrome Extension?

Crossdart Chrome Extension是由https://crossdart.info開發的Chrome擴展程式,該擴展的主要功能是“Adds 'Go to definition' and 'Find Usages' functionality for Dart packages on Github”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Crossdart Chrome Extension擴展crx文件

下載Crossdart Chrome Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Crossdart Chrome Extension Crossdart Chrome Extension
ID jmdjoliiaibifkklhipgmnciiealomhd
官方網址 https://chromewebstore.google.com/detail/crossdart-chrome-extensio/jmdjoliiaibifkklhipgmnciiealomhd
簡介 Adds 'Go to definition' and 'Find Usages' functionality for Dart packages on Github
檔案大小 24.83 KB
安裝次數 45
目前版本 0.3.0
更新時間 2016-06-06
上架時間 2016-06-06
評分 5.00/5 共 2 次評分
開發者 https://crossdart.info
付費類型 free
擴展官網 https://github.com/astashov/crossdart-chrome-extension
說明頁面URL https://github.com/astashov/crossdart-chrome-extension
支援的語言 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"
            ]
        }
    ]
}