Shaare your links...
6218 links
Shared links on http://www.la-pub-dans-les-films.fr/shaarli/ Home Login RSS Feed ATOM Feed Tag cloud Picture wall Daily
Links per page: 20 50 100
page 1 / 1
7 results for tags plugin x
  • youtube firefox plugin
    créer un répertoire
    puis y ajouter les 2 fichiers suivants

    manifest.json


    {
    "manifest_version": 3,
    "name": "YouTube NoCookie Redirect",
    "version": "1.0",
    "description": "Redirige les vidéos YouTube vers youtube-nocookie en mode embed.",
    "permissions": [
    "webRequest",
    "webRequestBlocking",
    "tabs"
    ],
    "host_permissions":
    [
    "https://www.youtube.com/watch*"; (virer le ;)
    ],
    "background": {
    "scripts": ["background.js"]
    }
    }



    -----------------------------------------------

    background.js

    chrome.webRequest.onBeforeRequest.addListener(
    function(details) {
    const url = new URL(details.url);

    // Vérifie que l'URL contient un paramètre v (ID de la vidéo)
    if (url.hostname === "www.youtube.com" && url.pathname === "/watch" && url.searchParams.has("v")) {
     const videoId = url.searchParams.get("v");
     const embedUrl = `https://www.youtube-nocookie.com/embed/${videoId}`;
     return { redirectUrl: embedUrl };
    }
    return {};
    },
    { urls: ["https://www.youtube.com/watch*";] },
    ["blocking"]
    );


    -----------------------

    about:debugging dans Firefox,

    cliquer sur "Charger un module complémentaire temporaire" et sélectionner le fichier manifest.json.
    Thu Jul 17 17:04:13 2025 - permalink -
    - ?hiD3uw
    firefox plugin youtube
  • GitHub - lekma/plugin.video.invidious: Invidious Addon for Kodi
    A check
    Sat Apr 29 15:13:56 2023 - permalink -
    - https://github.com/lekma/plugin.video.invidious
    Invidious kodi plugin
  • uMatrix
    uMatrix: Point and click matrix to filter net requests according to source, destination and type
    Sat Jan 14 18:34:03 2023 - permalink -
    - https://github.com/gorhill/uMatrix
    firefox plugin umatrix
  • Meet the Remove It Permanently Developer :: Add-ons for Firefox
    Meet the Remove It Permanently Developer :: Add-ons for Firefox
    Sun Sep 21 17:08:29 2014 - permalink -
    - https://addons.mozilla.org/en-US/firefox/addon/remove-it-permanently/contribute/roadblock/?src=dp-btn-primary&version=1.0.6.10
    firefox plugin
  • Utilisation plugin VLC
    <html>
    <head><title>Demo of VLC mozilla plugin</title></head>

    <body>

    <h1>Demo of VLC mozilla plugin - Example 1</h1>

    <embed type="application/x-vlc-plugin"
            name="video1"
            autoplay="no" loop="yes" width="400" height="300"
            target="http://server.example.org/video1.vob"; />
    <br />
     <a href="javascript:;" onclick='document.video1.play()'>Play video1</a>
     <a href="javascript:;" onclick='document.video1.pause()'>Pause video1</a>
     <a href="javascript:;" onclick='document.video1.stop()'>Stop video1</a>
     <a href="javascript:;" onclick='document.video1.fullscreen()'>Fullscreen</a>

    </body>
    </html>
    Tue May 20 21:40:45 2014 - permalink -
    - http://www.videolan.org/doc/play-howto/fr/ch04.html
    plugin VLC
  • Step by Step Tutorial: Create your own Firefox search plugin | Varun Kashyap's TechCrazy Blog
    Step by Step Tutorial: Create your own Firefox search plugin | Varun Kashyap's TechCrazy Blog
    Wed Jan 15 10:54:04 2014 - permalink -
    - http://varunkashyap.wordpress.com/2008/05/21/step-by-step-tutorial-create-your-own-firefox-search-plugin/
    Firefox plugin search
  • Disable Anti-Adblock :: Modules pour Firefox
    Disable Anti-Adblock

    fini les : veuillez desactiver votre bloqueur de pub
    Fri Aug 30 20:10:08 2013 - permalink -
    - https://addons.mozilla.org/fr/firefox/addon/disable-anti-adblock/?src=search
    adblock addon firefox plugin pub
Links per page: 20 50 100
page 1 / 1
Shaarli 0.0.41 beta - The personal, minimalist, super-fast, no-database delicious clone. By sebsauvage.net. Theme by idleman.fr.