Focus Image Viewer | 专注看图

Focus Image Viewer | 专注看图

A user-friendly image viewer. 一个美观易用的看图界面,帮助你专注于网页中的图片。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "short_name": "__MSG_extShortName__",
  "description": "__MSG_extDesc__",
  "version": "1.0.4",
  "default_locale": "en",
  "icons": {
    "16": "img/logo16.png",
    "48": "img/logo48.png",
    "128": "img/logo128.png"
  },
  "browser_action": {
    "default_icon": "img/logo48.png"
  },
  "permissions": [
    "contextMenus",
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "js/focus.manager.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end",
      "js": [
        "js/jquery.js",
        "js/jquery.scrollto.js",
        "js/focus.event.js",
        "js/focus.ui.js",
        "js/focus.image.js"
      ],
      "css": [
        "css/focus.css"
      ]
    }
  ]
}