Cliptray reads your local clipboard to keep a searchable history of text and images. History stays on this device and supports pinned items and private mode.
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
EGO-A-005 manual_review
extensions should not access the clipboard directly
Direct clipboard access via `St.Clipboard.get_default()` requires reviewer scrutiny.
lib/clipboard.js:12
St.Clipboard.get_default()
| Version | Status |
|---|---|
| 1.0.0 (1) | Unreviewed |
Cliptray is a clipboard history manager, so direct St.Clipboard access is essential to its purpose. St.Clipboard.get_default() (lib/clipboard.js:12) obtains the default clipboard. It reads the clipboard via get_text/get_content on a polling timer to record history entries (lib/clipboard.js:79, :67). It writes back via set_text/set_content only in response to an explicit user click on a history entry (lib/clipboard.js:46, :56). A short self-write suppression window prevents re-recording the extension's own writes. No clipboard data leaves the machine: history is kept in memory, and only user-pinned entries are persisted locally to pinned.json under the user data dir. There is no networking, sync, or telemetry. A "Private Mode" toggle lets users pause recording entirely.
Cliptray is a clipboard history manager, so direct St.Clipboard access is essential to its purpose. St.Clipboard.get_default() (lib/clipboard.js:12) obtains the default clipboard. It reads the clipboard via get_text/get_content on a polling timer to record history entries (lib/clipboard.js:79, :67). It writes back via set_text/set_content only in response to an explicit user click on a history entry (lib/clipboard.js:46, :56). A short self-write suppression window prevents re-recording the extension's own writes. No clipboard data leaves the machine: history is kept in memory, and only user-pinned entries are persisted locally to pinned.json under the user data dir. There is no networking, sync, or telemetry. A "Private Mode" toggle lets users pause recording entirely.