Pages2Repo

Pages2Repo

Opens the corresponding repository from a GitHub Page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Pages2Repo",
  "description": "Opens the corresponding repository from a GitHub Page",
  "version": "0.1.6",
  "manifest_version": 2,
  "icons": {
    "16": "images/repo-16.png",
    "128": "images/repo-128.png"
  },
  "background": {
    "scripts": [
      "scripts/github.js",
      "scripts/background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_icon": {
      "19": "images/repo-19.png",
      "38": "images/repo-38.png"
    },
    "default_title": "Pages2Repo",
    "default_popup": "popup.html"
  },
  "options_page": "token.html",
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "permissions": [
    "storage",
    "tabs",
    "clipboardWrite",
    "https://*.github.io/*",
    "https://github.com/"
  ]
}