微博通知助手

微博通知助手

新微博通知助手,无状态低配置第一时间获取最新关注微博

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "微博通知助手",
  "version": "1.0.1",
  "description": "新微博通知助手,无状态低配置第一时间获取最新关注微博",
  "icons": {
    "16": "img/icon.png",
    "48": "img/icon.png",
    "128": "img/icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "img/icon.png",
    "default_title": "新微博通知助手",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "notifications",
    "storage",
    "https://api.weibo.cn/*",
    "https://*.sinaimg.cn/*"
  ],
  "homepage_url": "https://github.com/inspurer",
  "options_page": "options.html",
  "options_ui": {
    "page": "popup.html",
    "chrome_style": true
  },
  "omnibox": {
    "keyword": "new_weibo"
  }
}