Github Original Streak

Github Original Streak

Re-builds former current and longest streaks on Github profiles

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Github Original Streak",
  "short_name": "Github Streak",
  "version": "1.15.1",
  "version_name": "1.15.1",
  "manifest_version": 3,
  "description": "Re-builds former current and longest streaks on Github profiles",
  "homepage_url": "https://github.com/Naramsim/GithubOriginalStreak",
  "author": "Naramsim",
  "icons": {
    "16": "icons/g16.png",
    "48": "icons/g48.png",
    "128": "icons/g128.png"
  },
  "default_locale": "en",
  "offline_enabled": true,
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://github.com/*",
    "https://api.github.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://github.com/*"
      ],
      "all_frames": false,
      "run_at": "document_end",
      "js": [
        "src/inject.js"
      ]
    }
  ]
}