RDS分表分库查询

rds分表分库查询,美团后端研发查询分库分表使用,可以快速的实现按照时间倒排序查询数据
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "RDS分表分库查询",
  "version": "1.0.1",
  "description": "rds分表分库查询,美团后端研发查询分库分表使用,可以快速的实现按照时间倒排序查询数据",
  "permissions": [
    "declarativeContent",
    "storage"
  ],
  "homepage_url": "https://rds.mws.sankuai.com/dba/shard?current=1",
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://rds.mws.sankuai.com/*",
        "https://rds.mws.sankuai.com/dba/shard/*?active=query",
        "https://rds.mws-test.sankuai.com/*",
        "https://rds.mws-test.sankuai.com/dba/shard/*?active=query"
      ],
      "js": [
        "rds_query.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "manifest_version": 3
}