GitHub Stars Tagger

GitHub Stars Tagger

A Google Chrome extension that lets you add tags to your starred repositories directly on GitHub.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GitHub Stars Tagger",
  "version": "1.0.3",
  "description": "A Google Chrome extension that lets you add tags to your starred repositories directly on GitHub.",
  "author": "Benoît Grélard",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "64": "icons/64.png",
    "128": "icons/128.png",
    "256": "icons/256.png",
    "512": "icons/512.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://github.com/stars",
        "https://github.com/stars/",
        "https://github.com/stars?*"
      ],
      "js": [
        "libs/utils.js",
        "libs/TagsStore.js",
        "libs/EventEmitter.js",
        "libs/Model.js",
        "libs/View.js",
        "models/Tags.js",
        "views/TagLineView.js",
        "views/TagSidebarView.js",
        "main.js"
      ],
      "css": [
        "styles/TagLine.css",
        "styles/TagSidebar.css"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "manifest_version": 2,
  "minimum_chrome_version": "45"
}