UUID Finder

UUID Finder

This extension will automatically display the UUID at the top of the page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "UUID Finder",
  "version": "0.0.3",
  "manifest_version": 2,
  "description": "This extension will automatically display the UUID at the top of the page.",
  "homepage_url": "http://www.professorbot.me",
  "icons": {
    "16": "icons/icon-19.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "default_locale": "en",
  "browser_action": {
    "default_icon": "icons/icon-19.png",
    "default_title": "UUID Finder",
    "default_popup": "src/browser_action/browser_action.html"
  },
  "permissions": [
    "https://www.chegg.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.chegg.com/*"
      ],
      "js": [
        "src/inject/inject.js"
      ]
    }
  ]
}