awesome-repositories.com
Blog
awesome-repositories.com

Découvrez les meilleurs dépôts open-source grâce à notre recherche par IA.

ExplorerRecherches sélectionnéesAlternatives open sourceLogiciels auto-hébergésBlogPlan du site
ProjetÀ proposNotre méthodologiePresseServeur MCP
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

4 dépôts

Awesome GitHub RepositoriesScript Context Injections

Mechanisms for inserting custom scripts into a web page's execution environment at specific lifecycle stages.

Distinct from Runtime Context Injections: The candidates refer to server-side request contexts or AI prompt contexts, whereas this is about browser DOM and network interception via script injection.

Explore 4 awesome GitHub repositories matching web development · Script Context Injections. Refine with filters or upvote what's useful.

Awesome Script Context Injections GitHub Repositories

Trouvez les meilleurs dépôts grâce à l'IA.Nous recherchons les dépôts les plus pertinents grâce à l'IA.
  • momo707577045/m3u8-downloaderAvatar de Momo707577045

    Momo707577045/m3u8-downloader

    7,014Voir sur GitHub↗

    m3u8-downloader is a tool for extracting, downloading, and merging video segments from m3u8 playlist files into a single file. It functions as an HLS stream extractor and downloader that parses playlists to identify and retrieve individual video fragments. The project features a dedicated AES-128 stream decryptor to ensure encrypted media is playable and utilizes an MP4 transcoder to convert fragmented stream segments into a standard container for broad media player compatibility. It employs cross-origin script injection to bypass browser security restrictions and extract video source links d

    Injects download logic into the context of the host video page to bypass cross-origin security restrictions.

    JavaScriptblobm3u8
    Voir sur GitHub↗7,014
  • autoscrape-labs/pydollAvatar de autoscrape-labs

    autoscrape-labs/pydoll

    6,919Voir sur GitHub↗

    pydoll is a Chrome DevTools Protocol automation library and headless browser controller used for web data extraction and parallel browser automation. It controls Chromium-based browsers via direct WebSocket connections, allowing it to manage isolated browser contexts and tabs while bypassing the overhead and detection associated with WebDriver. The project features an anti-bot evasion framework that mimics natural human behavior, including mouse movements generated via Bezier curves and variable typing patterns. It provides specialized stealth capabilities to bypass behavioral analysis and au

    Executes custom JavaScript where the script references the target element as the execution context.

    Pythonanti-detectionautomationbrowser-automation
    Voir sur GitHub↗6,919
  • quoid/userscriptsAvatar de quoid

    quoid/userscripts

    4,349Voir sur GitHub↗

    Userscripts is a Safari browser extension that installs and runs custom JavaScript and CSS on websites through Apple's content script injection system. It provides a privileged execution context that allows userscripts to perform cross-origin HTTP requests and access clipboard functionality beyond standard browser sandbox restrictions. The extension uses metadata tags like @match, @run-at, and @weight to control precisely when and where scripts execute on web pages. It includes a built-in code editor with syntax highlighting and linting for modifying scripts directly, and supports automatic s

    Matching userscripts to specific domains using metadata tags and controlling injection timing and execution context per page.

    Swiftsafarisafari-app-extensionsafari-extension
    Voir sur GitHub↗4,349
  • scriptscat/scriptcatAvatar de scriptscat

    scriptscat/scriptcat

    4,122Voir sur GitHub↗

    Scriptcat is a user script manager and browser extension designed to install, execute, and manage custom JavaScript scripts to modify website behavior and extend browser functionality. It features a JavaScript sandbox environment that provides specialized APIs for storage, cookies, and system notifications, alongside a cloud-synced script repository to keep subscriptions and configurations consistent across multiple devices. The project includes an in-browser script editor for writing, testing, and debugging code directly within the browser. It also incorporates a cross-domain request engine

    Injects JavaScript into the page environment at specific lifecycle stages to modify the DOM or intercept network requests.

    TypeScriptchrome-extensiongreasemonkey-userscriptscriptcat
    Voir sur GitHub↗4,122
  1. Home
  2. Web Development
  3. Script Context Injections

Explorer les sous-tags

  • Element-Bound ScriptsExecutes JavaScript within the specific context of a DOM element. **Distinct from Script Context Injections:** Distinct from Script Context Injections: specifically binds the execution context to a 'this' reference of a DOM element.
  • Metadata-Driven Injection ControlsControls script injection timing and domain targeting using metadata tags like @match, @run-at, and @weight. **Distinct from Script Context Injections:** Distinct from Script Context Injections: focuses on metadata-based matching and timing control rather than the general mechanism of inserting scripts into page contexts.