GitHub Pages View Source

GitHub Pages View Source

Add a View Source on GitHub button to the omnibar to any GitHub page (using the `github.io`) domain.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GitHub Pages View Source",
  "version": "1.1",
  "description": "Add a View Source on GitHub button to the omnibar to any GitHub page (using the `github.io`) domain.",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_icon": "icon-19.png",
    "default_title": "View source on GitHub"
  },
  "permissions": [
    "declarativeContent",
    "activeTab",
    "tabs"
  ],
  "icons": {
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "manifest_version": 2
}