999 Plus

999 Plus

Extension for sorting 999.md items

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "999 Plus",
  "version": "1.3.1",
  "description": "Extension for sorting 999.md items",
  "permissions": [
    "activeTab",
    "declarativeContent",
    "storage"
  ],
  "options_page": "options.html",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://999.md/*",
        "https://999.md/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "images/999plus16.png",
    "32": "images/999plus32.png",
    "48": "images/999plus48.png",
    "128": "images/999plus128.png"
  },
  "manifest_version": 2
}