PDF Saver For CSDN Blog

PDF Saver For CSDN Blog

以PDF文件形式保存CSDN博客的文章内容。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "以PDF文件形式保存CSDN博客的文章内容。",
  "author": "chenjs",
  "manifest_version": 2,
  "name": "PDF Saver For CSDN Blog",
  "version": "1.4.1.1",
  "icons": {
    "48": "icons/pdf-48.png",
    "96": "icons/pdf-96.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "notifications",
    "*://*.blog.csdn.net/*"
  ],
  "page_action": {
    "default_title": "保存文章内容",
    "default_icon": {
      "48": "icons/pdf-48.png",
      "96": "icons/pdf-96.png"
    },
    "show_matches": [
      "*://*.blog.csdn.net/*"
    ]
  },
  "applications": {
    "gecko": {
      "id": "{0DCF7DAC-26F3-4ECD-95BB-C2974E5B3041}",
      "strict_min_version": "79.0"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.blog.csdn.net/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}