Github Fast Traveler

Github Fast Traveler

This extension is provide contents search experience like IDE when you browse the Github.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Github Fast Traveler",
  "short_name": "github-fast-traveler",
  "description": "This extension is provide contents search experience like IDE when you browse the Github.",
  "version": "4.1.0",
  "author": "t-kuni",
  "browser_action": {
    "default_icon": "resources/images/icon128.png",
    "default_popup": "dist/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*"
      ],
      "js": [
        "dist/content_script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "dist/embedded_script.js"
  ],
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "resources/images/icon16.png",
    "48": "resources/images/icon48.png",
    "128": "resources/images/icon128.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';"
}