稀土掘金

稀土掘金

为程序员、设计师、产品经理每日发现优质内容。

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "稀土掘金",
  "short_name": "稀土掘金",
  "version": "0.9.1",
  "description": "为程序员、设计师、产品经理每日发现优质内容。",
  "icons": {
    "16": "static/icons/icon-16x16.png",
    "48": "static/icons/icon-48x48.png",
    "128": "static/icons/icon-128x128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "static/icons/icon-19x19.png",
      "38": "static/icons/icon-38x38.png"
    },
    "default_title": "稀土掘金",
    "default_popup": "main.html#/popup"
  },
  "permissions": [
    "storage",
    "cookies",
    "contextMenus",
    "tabs",
    "alarms",
    "http://*/",
    "https://*/"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "static/content-script.js"
      ]
    }
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "static/background.js"
    ]
  },
  "web_accessible_resources": [
    "*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://www.google-analytics.com https://*.bytegoofy.com https://*.bytescm.com https://*.pstatp.com; object-src 'self'",
  "chrome_url_overrides": {
    "newtab": "main.html"
  },
  "offline_enabled": true,
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}