微信公众号文章url获取

微信公众号文章url获取

通过微信公众号后台公众号文章链接功能获取选中公众号的所有文章url

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "微信公众号文章url获取",
  "version": "0.2.1",
  "description": "通过微信公众号后台公众号文章链接功能获取选中公众号的所有文章url",
  "permissions": [
    "activeTab",
    "declarativeContent",
    "storage",
    "tabs",
    "https://www.jwang0614.top/*"
  ],
  "background": {
    "scripts": [
      "background.js",
      "jquery.min.js"
    ],
    "persistent": false
  },
  "options_page": "options.html",
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/logo16.png",
      "32": "images/logo32.png",
      "48": "images/logo48.png",
      "128": "images/logo128.png"
    }
  },
  "icons": {
    "16": "images/logo16.png",
    "32": "images/logo32.png",
    "48": "images/logo48.png",
    "128": "images/logo128.png"
  },
  "manifest_version": 2
}