Book Sheep

Book Sheep

Allow sending ebook on b-ok.cc to your Kindle automatically

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Book Sheep",
  "version": "1.0.0",
  "description": "Allow sending ebook on b-ok.cc to your Kindle automatically",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "https://b-ok.cc/*"
      ],
      "css": [
        "content.css"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "http://*.zlibcdn.com/",
    "https://api.mailgun.net/"
  ],
  "icons": {
    "16": "icon16x16.png",
    "48": "icon48x48.png",
    "128": "icon128x128.png"
  }
}