Show Me the Code

Show Me the Code

A quick way to find links to common code hosting websites (e.g. GitHub) on any webpage.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Show Me the Code",
  "description": "A quick way to find links to common code hosting websites (e.g. GitHub) on any webpage.",
  "version": "0.1.0",
  "icons": {
    "16": "assets/images/icon16.png",
    "48": "assets/images/icon48.png",
    "128": "assets/images/icon128.png"
  },
  "web_accessible_resources": [
    "repo_matchers.js",
    "get_links.js"
  ],
  "permissions": [
    "activeTab"
  ],
  "browser_action": {
    "default_title": "Show Me the Code",
    "default_icon": {
      "19": "assets/images/icon19.png",
      "38": "assets/images/icon38.png"
    },
    "default_popup": "popup.html"
  },
  "manifest_version": 2
}