GitHub Unfold News

GitHub Unfold News

Auto unfold news on GitHub dashboard.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Auto unfold news on GitHub dashboard.",
  "version": "0.1.1",
  "manifest_version": 2,
  "name": "GitHub Unfold News",
  "author": "xxhomey19",
  "content_scripts": [
    {
      "matches": [
        "https://github.com/"
      ],
      "js": [
        "contentscript.bundle.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "img/icon-64.png"
  },
  "icons": {
    "16": "img/icon-16.png",
    "64": "img/icon-64.png",
    "128": "img/icon-128.png"
  },
  "content_security_policy": "script-src 'self'; object-src 'self'"
}