Examine source code of Song Timer

Inspect and view changes in Song Timer 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 Timer",
  "version": "1.0",
  "description": "Đặt bộ hẹn giờ để tắt nhạc sau một khoảng thời gian nhất định.",
  "permissions": [
    "alarms",
    "activeTab",
    "tabs",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "48": "icons/icon.png"
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{299cc073-81ed-4451-8f38-8fb88718d3b1}"
    }
  }
}