Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
165 changes: 165 additions & 0 deletions cli-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -14110,6 +14110,129 @@
"modulePath": "lichess/user.js",
"sourceFile": "lichess/user.js"
},
{
"site": "linkedin",
"name": "inbox",
"description": "Read visible LinkedIn messaging inbox rows with thread URLs, previews, and unread hints",
"access": "read",
"domain": "www.linkedin.com",
"strategy": "ui",
"browser": true,
"args": [
{
"name": "limit",
"type": "number",
"default": 40,
"required": false,
"help": "Maximum visible inbox rows to return"
},
{
"name": "json",
"type": "bool",
"default": false,
"required": false,
"help": "Return compact JSON in inbox_json"
}
],
"columns": [
"index",
"name",
"unread",
"unread_count",
"unreadCount",
"timestamp",
"preview",
"thread_url",
"threadUrl",
"profile_url",
"profileUrl",
"rowText",
"inbox_json"
],
"type": "js",
"modulePath": "linkedin/inbox.js",
"sourceFile": "linkedin/inbox.js",
"navigateBefore": true
},
{
"site": "linkedin",
"name": "safe-send",
"description": "Fail-closed LinkedIn message sender that verifies exact thread, recipient, and latest message before filling/sending",
"access": "write",
"domain": "www.linkedin.com",
"strategy": "ui",
"browser": true,
"args": [
{
"name": "thread-url",
"type": "str",
"required": true,
"help": "Exact LinkedIn messaging thread URL to open and verify"
},
{
"name": "expected-name",
"type": "str",
"required": true,
"help": "Expected visible recipient name in the active thread header"
},
{
"name": "message",
"type": "str",
"required": true,
"help": "Message body to send or dry-run"
},
{
"name": "expected-last-text",
"type": "str",
"required": false,
"help": "Substring expected in the currently visible latest conversation context"
},
{
"name": "expected-last-hash",
"type": "str",
"required": false,
"help": "SHA-256 hash of expected latest visible message text"
},
{
"name": "send",
"type": "bool",
"default": false,
"required": false,
"help": "Actually click Send. Default is dry-run verification only."
},
{
"name": "screenshot",
"type": "bool",
"default": false,
"required": false,
"help": "Capture a screenshot during verification"
}
],
"columns": [
"status",
"recipient",
"reason",
"thread_url",
"message_chars",
"expected",
"actual",
"url",
"screenshot",
"authRequired",
"bodyText",
"composerFound",
"composerText",
"headerNames",
"latestMessageHash",
"latestMessageText",
"searchFailure",
"title"
],
"type": "js",
"modulePath": "linkedin/safe-send.js",
"sourceFile": "linkedin/safe-send.js",
"navigateBefore": true
},
{
"site": "linkedin",
"name": "search",
Expand Down Expand Up @@ -14198,6 +14321,48 @@
"sourceFile": "linkedin/search.js",
"navigateBefore": "https://www.linkedin.com"
},
{
"site": "linkedin",
"name": "thread-snapshot",
"description": "Load a LinkedIn messaging thread, scroll for available history, and return a full context snapshot",
"access": "read",
"domain": "www.linkedin.com",
"strategy": "ui",
"browser": true,
"args": [
{
"name": "thread-url",
"type": "str",
"required": true,
"help": "Exact LinkedIn messaging thread URL to open and snapshot"
},
{
"name": "max-scrolls",
"type": "number",
"default": 30,
"required": false,
"help": "Maximum upward scroll attempts to load older messages"
},
{
"name": "json",
"type": "bool",
"default": false,
"required": false,
"help": "Return only JSON snapshot string in the snapshot_json field"
}
],
"columns": [
"thread_url",
"recipient",
"message_count",
"latest_text",
"snapshot_json"
],
"type": "js",
"modulePath": "linkedin/thread-snapshot.js",
"sourceFile": "linkedin/thread-snapshot.js",
"navigateBefore": true
},
{
"site": "linkedin",
"name": "timeline",
Expand Down
Loading
Loading