What's Stopping You

What's Stopping You

Look more productive

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "name": "What's Stopping You",
  "description": "Look more productive",
  "version": "0.0.0.1",
  "browser_action": {
    "default_icon": "whatsstoppingyou.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*"
      ],
      "all_frames": true,
      "js": [
        "whatsstoppingyou.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "activeTab",
    "storage"
  ]
}