鲁度娘

鲁度娘

在百度贴吧浏览帖子的时候在页面的左右两侧分别添加一个向前翻页和向后翻页的侧边栏链接以便快速翻页或者也可以使用左右方向键进行快速翻页,并且会预加载下一页的图片以提高浏览速度。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "js/core.js"
      ],
      "matches": [
        "http://tieba.baidu.com/*"
      ]
    }
  ],
  "description": "在百度贴吧浏览帖子的时候在页面的左右两侧分别添加一个向前翻页和向后翻页的侧边栏链接以便快速翻页或者也可以使用左右方向键进行快速翻页,并且会预加载下一页的图片以提高浏览速度。",
  "icons": {
    "16": "images/icon.png",
    "48": "images/icon.png",
    "128": "images/icon.png"
  },
  "name": "鲁度娘",
  "permissions": [
    "tabs",
    "http://tieba.baidu.com/*"
  ],
  "version": "13.8.9",
  "manifest_version": 2
}