Examine source code of Song Mood Tracker

Inspect and view changes in Song Mood Tracker source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Song Mood Tracker",
  "version": "1.0",
  "description": "Theo dõi tâm trạng của các bài hát và gợi ý nhạc tương tự.",
  "permissions": [
    "activeTab",
    "tabs",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "48": "icons/icon.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{4ce62015-d007-4df1-9b31-0c17702f07e1}"
    }
  }
}