Examine source code of 小於菟抓取

Inspect and view changes in 小於菟抓取 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
{
  "background": {
    "scripts": [
      "js/firefox.js",
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "img/get.png",
    "default_title": "还没闻到味儿~",
    "default_popup": "popup.html"
  },
  "description": "网页媒体嗅探工具",
  "icons": {
    "256": "img/get.png"
  },
  "manifest_version": 2,
  "name": "小於菟抓取",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "permissions": [
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "downloads",
    "storage",
    "webNavigation",
    "alarms",
    "scripting",
    "activeTab",
    "*://*/*",
    "<all_urls>"
  ],
  "commands": {
    "_execute_browser_action": {},
    "enable": {
      "description": "暂停 / 启用"
    },
    "auto_down": {
      "description": "自动下载"
    },
    "catch": {
      "description": "缓存捕捉"
    },
    "m3u8": {
      "description": "m3u8解析器"
    },
    "clear": {
      "description": "清空当前标签数据"
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "lz.xwt@outlook.com-get"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "js/content-script.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "catch-script/*"
  ],
  "version": "1.0"
}