geomfrog_collector

geomfrog_collector

The extension program is provided by geomefrog (www.geomefrog. CN), which enables you to conveniently collect the pictures of various websites into your geomefrog account, and you can open the geomefrog account to browse your collected pictures at any time.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "version": "1.0.0",
  "homepage_url": "https://www.geomfrog.cn/",
  "description": "__MSG_extDesc__",
  "default_locale": "zh_CN",
  "content_security_policy": "script-src 'self' ; object-src 'self'",
  "content_scripts": [
    {
      "js": [
        "js/jquery.js",
        "js/content-script.js",
        "js/runtime.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "contextMenus",
    "activeTab",
    "tabs",
    "notifications",
    "webRequest",
    "webRequestBlocking",
    "storage",
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "js/inject.js",
    "imageList.html"
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "devtools_page": "devtools.html",
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "__MSG_extName__",
    "default_icon": {
      "19": "icons/19.png",
      "38": "icons/38.png"
    }
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}