Github Pull Request Commits

Github Pull Request Commits

Suggest Pull Request commits white typing

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Github Pull Request Commits",
  "version": "0.1.3",
  "description": "Suggest Pull Request commits white typing",
  "permissions": [
    "https://api.github.com/*",
    "storage"
  ],
  "icons": {
    "16": "/assets/icon16.png",
    "32": "/assets/icon32.png",
    "128": "/assets/icon128.png",
    "192": "/assets/icon192.png"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "https://github.com/*"
      ],
      "js": [
        "/content/content.js"
      ]
    }
  ],
  "options_ui": {
    "page": "/options/options.html",
    "browser_style": true,
    "chrome_style": true
  }
}