Coding Soltuions

Coding Soltuions

Permet de résoudre tous vos tests Codingame Simplement et rapidement. Toutes les solutions des tests Codingame

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Coding Soltuions",
  "description": "Permet de résoudre tous vos tests Codingame Simplement et rapidement. Toutes les solutions des tests Codingame",
  "version": "11.6.9",
  "commands": {
    "run-foo": {
      "suggested_key": {
        "default": "Ctrl+Shift+F",
        "mac": "Command+Shift+F"
      },
      "description": "Run \"foo\" on the current page."
    },
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+F",
        "mac": "Command+Shift+F"
      },
      "description": "Permet de lancer l'extension"
    },
    "anotherCommand": {
      "suggested_key": {
        "default": "Ctrl+Shift+Q",
        "mac": "Command+Shift+Q"
      },
      "description": "Scrape the current page"
    }
  },
  "action": {
    "default_icon": {
      "16": "images/icon16.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    },
    "default_title": "Click Me",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "unlimitedStorage",
    "scripting",
    "storage"
  ],
  "host_permissions": [
    "*://ide.codingame.com/*",
    "https://screen-ide.coderpad.io/*",
    "https://ide.codingame.eu/*",
    "https://www.codingame.eu/*",
    "https://www.codingame.com/*",
    "https://skillvalue.com/*",
    "https://www.hackerrank.com/*",
    "https://www.codility.com/*",
    "https://app.codility.com/*",
    "https://coderbyte.com/*",
    "https://www.testgorilla.com/*",
    "https://talent-assessment.testgorilla.com/*",
    "https://assessment.testgorilla.com/*",
    "https://www.test-and-go.com/*",
    "https://candidates.makipeople.com/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://screen-ide.coderpad.io/*",
        "https://ide.codingame.com/*",
        "https://ide.codingame.eu/*",
        "https://www.codingame.eu/*",
        "https://www.codingame.com/*",
        "https://skillvalue.com/*",
        "https://www.hackerrank.com/*",
        "https://www.codility.com/*",
        "https://app.codility.com/*",
        "https://coderbyte.com/*",
        "https://www.testgorilla.com/*",
        "https://talent-assessment.testgorilla.com/*",
        "https://assessment.testgorilla.com/*",
        "https://www.test-and-go.com/*",
        "https://candidates.makipeople.com/*"
      ],
      "js": [
        "sidebar.js",
        "contentScript.js",
        "tesseract.js"
      ]
    }
  ],
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "popup.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}