Privacy Setup

Privacy Setup

PrivacySetup-Add is an extension create after the web site privacysetup.fr to upgrade your privacy online. Use this Firefox extension to never have to watch a video on YouTube and preserve your privacy.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Privacy Setup",
  "author": "Largo CATALAO",
  "version": "1.0.1",
  "description": "Prenez en mains votre vie privée.",
  "icons": {
    "48": "img/PSV_48.png",
    "96": "img/PSV_96.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "tabs",
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "action": {
    "default_icon": {
      "16": "img/PSV_16.png",
      "32": "img/PSV_32.png"
    },
    "default_title": "Privacy Setup",
    "default_popup": "popup/window.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "run_at": "document_start",
      "matches": [
        "*://*.youtube.com/*",
        "*://*.youtu.be/*",
        "*://*.youtube.fr/*"
      ],
      "exclude_matches": [
        "*://music.youtube.com/*"
      ],
      "js": [
        "redirect_piped.js"
      ]
    }
  ],
  "options_ui": {
    "page": "popup/settings.html",
    "browser_style": false
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{bdfff882-312c-4b1a-961c-0c3fe97d2ed9}"
    }
  }
}