Examine source code of YouTube Videos Tabs Sorter by Duration

Inspect and view changes in YouTube Videos Tabs Sorter by Duration 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": "YouTube Videos Tabs Sorter by Duration",
  "version": "1.2.2",
  "description": "Sort YouTube video tabs by duration",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "sortyoutubebyduration@thesaurus.addons.mozilla.org"
    }
  },
  "permissions": [
    "storage",
    "activeTab",
    "https://*.youtube.com/*"
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icons/icon16.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png"
    }
  },
  "icons": {
    "48": "icons/icon48.png",
    "96": "icons/icon96.png",
    "128": "icons/icon128.png"
  }
}