Uniblocker

Uniblocker

Uniblocker is a chrome extension designed to minimize distractions on today's most popular social media. Eliminate procrastination…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "2.0.0",
  "name": "Uniblocker",
  "short_name": "Uniblocker",
  "action": {
    "default_popup": "./main.html",
    "default_icon": {
      "16": "./src/icons/16.png",
      "32": "./src/icons/32.png",
      "64": "./src/icons/64.png",
      "128": "./src/icons/128.png"
    },
    "default_title": "UnDi$tracted"
  },
  "permissions": [
    "storage",
    "activeTab",
    "identity",
    "webNavigation"
  ],
  "content_scripts": [
    {
      "js": [
        "/src/js/jquery.min.js",
        "/src/content/undistracted-facebook.js"
      ],
      "run_at": "document_start",
      "matches": [
        "*://*.facebook.com/*"
      ]
    },
    {
      "js": [
        "/src/js/jquery.min.js",
        "/src/content/undistracted-youtube.js"
      ],
      "run_at": "document_start",
      "matches": [
        "*://*.youtube.com/*"
      ]
    },
    {
      "js": [
        "/src/js/jquery.min.js",
        "/src/content/undistracted-tiktok.js"
      ],
      "run_at": "document_start",
      "matches": [
        "*://*.tiktok.com/*"
      ]
    },
    {
      "js": [
        "/src/js/jquery.min.js",
        "/src/content/undistracted-instagram.js"
      ],
      "run_at": "document_start",
      "matches": [
        "*://*.instagram.com/*"
      ]
    },
    {
      "js": [
        "/src/js/jquery.min.js",
        "/src/content/undistracted-reddit.js"
      ],
      "run_at": "document_start",
      "matches": [
        "*://*.reddit.com/*"
      ]
    },
    {
      "js": [
        "/src/js/jquery.min.js",
        "/src/content/undistracted-twitter.js"
      ],
      "run_at": "document_start",
      "matches": [
        "*://*.twitter.com/*",
        "*://*.twimg.com/*",
        "*://*.twttr.net/*",
        "*://*.twttr.com/*",
        "*://*.abs.twimg.com/*"
      ]
    },
    {
      "js": [
        "/src/js/jquery.min.js",
        "/src/content/undistracted-netflix.js"
      ],
      "run_at": "document_start",
      "matches": [
        "*://*.netflix.com/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background-wrapper.js"
  },
  "icons": {
    "16": "./src/icons/16.png",
    "32": "./src/icons/32.png",
    "64": "./src/icons/64.png",
    "128": "./src/icons/128.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self' 'unsafe-inline' https://apis.google.com;"
  },
  "oauth2": {
    "client_id": "203641531064-23v09912p82osni878lsv4gqhk41lqif.apps.googleusercontent.com",
    "scopes": [
      "profile",
      "email",
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/images/64.png",
        "src/images/welcome.png",
        "src/css/static.css",
        "src/images/delete_icon.png",
        "firebase_config.js",
        "firebase/auth"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}