Prognos

Prognos

Copiar elementos

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Prognos",
  "description": "Copiar elementos",
  "version": "1.4",
  "author": "Prognos",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "browser_action": {
    "default_icon": "img/logo.png",
    "default_title": "Enviar elementos",
    "default_popup": "osint.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "css": [
        "content.css"
      ],
      "js": [
        "plugins/jquery-3.3.1.min.js",
        "plugins/jquery.dom-outline-1.0.js",
        "html2canvas.min.js",
        "content.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://pinzonsoft.com/*",
      "http://pinzonsoft.com/*",
      "http://192.168.1.20/*",
      "http://localhost:61941/*",
      "http://localhost:39251/*",
      "https://twitter.com/*"
    ]
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "unlimitedStorage",
    "contextMenus",
    "http://*/*",
    "https://*/*"
  ]
}