Feedider

Feedider

Feedider helps to hide distracting feeds or other similar sections from youtube, facebook, instagram, linkedin, twitter and reddit.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Feedider",
  "description": "Feedider helps to hide distracting feeds or other similar sections from youtube, facebook, instagram, linkedin, twitter and reddit.",
  "version": "2.0.0",
  "manifest_version": 3,
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/feedider_16.png",
      "32": "/images/feedider_32.png",
      "48": "/images/feedider_48.png",
      "64": "/images/feedider_64.png",
      "128": "/images/feedider_128.png"
    }
  },
  "icons": {
    "16": "/images/feedider_16.png",
    "32": "/images/feedider_32.png",
    "48": "/images/feedider_48.png",
    "64": "/images/feedider_64.png",
    "128": "/images/feedider_128.png"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "*://*.youtube.com/*"
      ],
      "css": [
        "css/youtubeContentScriptStyle.css"
      ],
      "js": [
        "js/youtubeContentScript.js"
      ],
      "all_frames": true
    },
    {
      "run_at": "document_end",
      "matches": [
        "*://*.facebook.com/*"
      ],
      "css": [
        "css/facebookContentScriptStyle.css"
      ],
      "js": [
        "js/facebookContentScript.js"
      ],
      "all_frames": true
    },
    {
      "run_at": "document_end",
      "matches": [
        "*://*.instagram.com/*"
      ],
      "css": [
        "css/instaContentScriptStyle.css"
      ],
      "js": [
        "js/instaContentScript.js"
      ],
      "all_frames": true
    },
    {
      "run_at": "document_end",
      "matches": [
        "*://*.linkedin.com/*"
      ],
      "css": [
        "css/linkedinContentScriptStyle.css"
      ],
      "js": [
        "js/linkedinContentScript.js"
      ],
      "all_frames": true
    },
    {
      "run_at": "document_end",
      "matches": [
        "*://*.twitter.com/*"
      ],
      "css": [
        "css/twitterContentScriptStyle.css"
      ],
      "js": [
        "js/twitterContentScript.js"
      ],
      "all_frames": true
    },
    {
      "run_at": "document_end",
      "matches": [
        "*://*.reddit.com/*"
      ],
      "css": [
        "css/redditContentScriptStyle.css"
      ],
      "js": [
        "js/redditContentScript.js"
      ],
      "all_frames": true
    }
  ]
}