cratehub

cratehub

On every GitHub repository or folder with a Cargo.toml file, scroll to the bottom of the page to see a list of its npm dependencies and their descriptions.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "cratehub",
  "version": "0.0.3",
  "description": "github rust cargo project crates info",
  "browser_action": {
    "default_icon": "assets/icon-512.png"
  },
  "background": {
    "page": "background/index.html",
    "persistent": true
  },
  "icons": {
    "16": "assets/icon-512.png",
    "48": "assets/icon-512.png",
    "128": "assets/icon-512.png"
  },
  "permissions": [
    "https://crates.io/",
    "activeTab",
    "http://*/",
    "https://*/"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*",
        "https://gitlab.com/*"
      ],
      "js": [
        "./contentScripts/index.global.js"
      ],
      "css": [
        "./contentScripts/style.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "./contentScripts/style.css"
  ]
}