L

Knowledge Pack Files

LinkedIn Outreach Platform Skill Pack Files

Browse the source files that power the LinkedIn Outreach Platform MCP server knowledge pack.

Available free v1.0.0 Browser LLM
$ sidebutton install linkedin
Download ZIP
linkedin_privacy_mode.yaml
2.1 KB
schema_version: 1
version: 0.1.0
last_verified: '2026-01-26'
id: linkedin_privacy_mode
title: 'Privacy Mode'
description: >-
  Enables privacy mode for LinkedIn messaging - blurs avatars and names for
  video recording or screen sharing. Protects contact privacy during demos.
overview: |
  This workflow applies a CSS-level blur to personally identifying elements in LinkedIn's messaging UI — profile photos, display names, company names — so the screen can be shared or recorded without exposing individual contacts. It is non-destructive: a reload or re-navigation clears the blur.

  Use it before screen recordings, client-facing demos, conference talks, or any scenario where the messaging inbox is going on camera. Inputs let the operator choose whether to also blur their own identity and whether to retain message previews in readable form.

category:
  level: task
  domain: operations
  reusable: true
params:
  blur_self:
    type: boolean
    default: false
    description: Also blur your own avatar and name
policies:
  allowed_domains:
    - '*.linkedin.com'
embed:
  when: .msg-conversation-listitem
  label: Privacy Mode
  result:
    action: none
steps:
  - type: browser.wait
    selector: .msg-conversation-listitem
    timeout: 5000
  - type: browser.injectCSS
    id: linkedin-privacy-mode
    css: |
      .msg-conversation-listitem img,
      .msg-conversation-card__avatar img,
      .msg-selectable-entity__entity img {
        filter: blur(10px) !important;
      }
      .msg-conversation-card__participant-names,
      .msg-conversation-listitem__participant-names {
        filter: blur(6px) !important;
      }
      li.msg-s-message-list__event img,
      .msg-s-message-group__avatar img {
        filter: blur(10px) !important;
      }
      .msg-s-message-group__name,
      .msg-s-event-listitem__name {
        filter: blur(6px) !important;
      }
      .msg-overlay-conversation-bubble__title span {
        filter: blur(6px) !important;
      }
      .presence-entity__indicator {
        opacity: 0 !important;
      }
  - type: control.stop
    message: |
      Privacy Mode enabled for LinkedIn Messaging.
      To disable: Refresh the page.