JOMO

JOMO

Limit addictive and distracting behaviours of webpages like YouTube, Twitter and others, and enjoy what really matters.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Santi Cros",
  "homepage_url": "https://www.feelthejomo.com/",
  "manifest_version": 2,
  "name": "JOMO",
  "short_name": "JOMO",
  "version": "0.0.3",
  "description": "Limit addictive and distracting behaviours of webpages like YouTube, Twitter and others, and enjoy what really matters.",
  "icons": {
    "32": "assets/icons/icon-32.png",
    "64": "assets/icons/icon-64.png"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true,
    "browser_style": false,
    "chrome_style": false
  },
  "browser_action": {
    "browser_style": false,
    "default_icon": {
      "32": "assets/icons/icon-32.png",
      "64": "assets/icons/icon-64.png"
    },
    "theme_icons": [
      {
        "light": "assets/icons/icon-16_white.png",
        "dark": "assets/icons/icon-16.png",
        "size": 16
      },
      {
        "light": "assets/icons/icon-32_white.png",
        "dark": "assets/icons/icon-32.png",
        "size": 32
      },
      {
        "light": "assets/icons/icon-64_white.png",
        "dark": "assets/icons/icon-64.png",
        "size": 64
      }
    ],
    "default_title": "JOMO"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*",
        "*://youtube.com/*"
      ],
      "css": [
        "interventions/youtube/content.css"
      ],
      "js": [
        "browser-polyfill.min.js",
        "utils.js",
        "interventions/youtube/content.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://*.twitter.com/*",
        "*://twitter.com/*"
      ],
      "css": [
        "interventions/twitter/content.css"
      ],
      "js": [
        "browser-polyfill.min.js",
        "utils.js",
        "interventions/twitter/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "page": "background.html"
  },
  "permissions": [
    "storage"
  ]
}