Books-Downloader

Служит для загрузки книг целиком с сайта akniga.org
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "version": "2.0.13",
  "manifest_version": 2,
  "default_locale": "ru",
  "author": "PhoenixRVD",
  "homepage_url": "https://github.com/phoenixrvd/Books-Downloader",
  "icons": {
    "128": "img/icon_128_128.png"
  },
  "browser_action": {
    "default_icon": "img/icon_24_24_gray.png",
    "default_title": "__MSG_buttonTitle__"
  },
  "content_scripts": [
    {
      "matches": [
        "https://akniga.org/*"
      ],
      "js": [
        "js/content/jquery-3.4.1.min.js",
        "js/content/crypto-js.min.js",
        "js/content/parser.js",
        "js/content/loader.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "downloads",
    "https://akniga.org/*"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{acb7a760-34c4-4d75-a49a-f8277c7ac7ad}"
    }
  }
}