Easy for X

Easy for X

Ex Twitter, now X for Chrome. A low profile and compact client with full X - Twitter features. Mobile interface now on X

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_chrome_extension_name__",
  "description": "__MSG_chrome_extension_description__",
  "version": "11.1",
  "default_locale": "en",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmFD18Gj1N2r4tThsBwfXo1oJiIEfhB0XrfLRHiwh2MZoYLhHXoANZxEx0RHL8KBiU0wFDS+4w5LFtQsErLVHU2HZ11ZQUx5Tv/5bfWij1L8AM4ZK6ogBJXjgeVD2j8j8J3yYAzXD4pIbyuXObLb3YMq+/8fb2GhD7njxIeeTdYODuQaNCO5kRQTbf3pY3Ok9dlVm9+uMDZ6zbAWVerXq/5p0BKbFsw9yUm/MQPyUrD99z2fLYmI4WbSl1Nt5s4z9i4U0a/QIBMe1evCqHpU92qiWpGj/37TN4qD1J29AP2jJ3GpWA54KB4dpuoOcMZEv7WHGU2mBOds8bZOhpO28GwIDAQAB",
  "options_page": "options/index.html",
  "action": {
    "default_title": "__MSG_chrome_extension_name__",
    "default_icon": {
      "19": "img/icon_19.png",
      "38": "img/icon_38.png"
    }
  },
  "background": {
    "service_worker": "eventPage.js"
  },
  "icons": {
    "16": "img/icon_16.png",
    "48": "img/icon_48.png",
    "128": "img/icon_128.png"
  },
  "permissions": [
    "system.display",
    "scripting",
    "activeTab",
    "notifications",
    "contextMenus",
    "unlimitedStorage",
    "storage"
  ],
  "host_permissions": [
    "*://*.twitter.com/*",
    "*://*.x.com/*",
    "*://*.wwevents.fun/*",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.twitter.com/*",
        "*://*.x.com/*"
      ],
      "js": [
        "js/jquery/jquery.min.js",
        "js/safeResponse/purify.min.js",
        "js/toastr/toastr.min.js",
        "i18n.js",
        "js/i18n/i18n.js",
        "js/introjs/intro.min.js",
        "js/material-io/material-components-web.min.js",
        "js/jquery-menu/jquery.contextMenu.min.js",
        "js/jquery-menu/jquery.ui.position.min.js",
        "utils.js",
        "myScript.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    },
    {
      "matches": [
        "*://*.twitter.com/*",
        "*://*.x.com/*"
      ],
      "js": [
        "myScriptTwitterBadge.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/*",
        "js/*",
        "options/*",
        "css/*",
        "html/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}