Answers

Answers

Shares the questions and answers. Helps to get answers. Works for itpu

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Answers",
  "version": "1.167",
  "browser_specific_settings": {
    "gecko": {
      "strict_min_version": "65.0",
      "id": "{2e0bc268-d814-4eb8-9b65-56a85003d16a}"
    }
  },
  "description": "Shares the questions and answers. Helps to get answers",
  "icons": {
    "48": "icons/logo-48.png",
    "96": "icons/logo-96.png"
  },
  "permissions": [
    "https://university.epam.com/*",
    "https://answers.alwaysdata.net/*",
    "http://answers.alwaysdata.net/*",
    "http://localhost/*",
    "activeTab",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "icons/logo-32.png",
    "default_title": "Answers",
    "default_popup": "popup/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.epam.com/*"
      ],
      "js": [
        "content_scripts/testpage.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "*://answers.alwaysdata.net/*"
      ],
      "js": [
        "content_scripts/answers.js"
      ]
    }
  ]
}