|
7538
|
140
|
36
|
2026-04-13T15:59:52.465957+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776095992465_m1.jpg...
|
Code
|
Getting started with Cla… — screenpipe [SSH: 100.7 Getting started with Cla… — screenpipe [SSH: 100.73.206.126]...
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧ Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧G)
Run and Debug (⇧⌘D)
Remote Explorer
Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update
2
Claude Code
Containers
EXPLORER
EXPLORER
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
SCREENPIPE [SSH: [IP_ADDRESS]]
#recycle
app
__pycache__
consumers
static
.env
cli.py
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
data
pipes
db.sqlite
db.sqlite-shm
db.sqlite-wal
Outline Section
OUTLINE
OUTLINE
Timeline Section
TIMELINE
TIMELINE
pipe.md, Editor Group 1
Untitled-2, Editor Group 1
docker-compose.yml, preview, Editor Group 1
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
Getting started with Cla…, Editor Group 2
Problems (⇧⌘M)
PROBLEMS
Output (⇧⌘U)
OUTPUT
Debug Console (⇧⌘Y)
DEBUG CONSOLE
Terminal (⌃`)
TERMINAL
Ports
PORTS
remote SSH: [IP_ADDRESS]
SSH: [IP_ADDRESS]
No Problems
0
0
No Ports Forwarded
0
Notifications
Sign In
Sign In
Screen Reader Optimized
Info: Setting up SSH Host [IP_ADDRESS]: Setting up SSH tunnel
Command Succeeded
Getting started with Claude agent SDK
Session history
New session
Message actions
how to start it
Thinking
Thinking
Let me check what's in your working directory to understand what you're referring to.
Bash
IN
ls /volume1/screenpipe
Copy code to clipboard
OUT
app
data
db.sqlite
pipes
#recycle
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes
Copy code to clipboard
OUT
cli.py
consumers
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
static
ai-habits
day-recap
meeting-summary
standup-update
time-breakdown
video-export
[rerun: b2]
Read
docker-compose.yml
docker-compose.yml
This is a Screenpipe app with a Docker Compose setup. To start it:
Copy code to clipboard
cd /volume1/screenpipe/app
docker compose up -d
This builds the image (first run) and starts the container in the background
The app will be accessible at
[URL_WITH_CREDENTIALS]
sudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d
Once running, the dashboard will be at
http://your-nas-ip:8766
http://your-nas-ip:8766
and it will query the data you already copied — the database has 6,923 frames and 5,464 OCR records ready to go.
Message actions
docker-compose.yml
docker-compose.yml
I have ugos ugreen nas. I can see the ui but it is empty. No data. Also when I open it there is defsault today, lets make default yesterday.
Thinking
Thinking
Let me check why data isn't showing and look at the frontend.
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT DATE(timestamp) as d, COUNT(*) FROM frames GROUP BY d ORDER BY d DESC LIMIT 10;"
Copy code to clipboard
OUT
2026-04-13|2643
2026-04-12|2455
2026-04-11|1302
2026-04-09|523
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app/static/
Copy code to clipboard
OUT
index.html
[rerun: b2]
Bash
IN
wc -l /volume1/screenpipe/app/static/index.html
Copy code to clipboard
OUT
1048 /volume1/screenpipe/app/static/index.html
[rerun: b3]
Bash
IN
grep -n "today\|new Date\|date\|default" /volume1/screenpipe/app/static/index.html | head -40
Copy code to clipboard
OUT
24:input[type="date"] {
71:.sess-segment:hover { opacity: 0.8; cursor: default; }
179:button:disabled { opacity: 0.4; cursor: default; }
276: <input type="date" id="datePicker" onchange="refresh()">
336: <select id="sSrc" onchange="updateSourceHint()">
356: <input type="date" id="sDate">
388: <div id="workReportOut"><div class="empty">Click Generate Report to build a structured work summary for the selected date.</div></div>
398: <option value="standup">Standup Update</option>
453:const dp = document.getElementById('datePicker');
454:dp.value = new Date().toISOString().slice(0,10);
525: // Re-render bars to update selection highlight
679: const bucket = Math.floor(new Date(r.timestamp).getTime() / (everyMin * 60000));
710:function updateSourceHint() {
721: updateSourceHint();
797: if (!rows.length) { el.innerHTML = '<div class="empty">No audio for this date.</div>'; return; }
835: try { return new Date(ts).toLocaleTimeString([],{hour:'2-digit',minute:'2-digit'}); }
885: const spanMs = new Date(s.day_end) - new Date(s.day_start);
891: const left = (new Date(seg.start) - new Date(s.day_start)) / spanMs * 100;
892: const width = (new Date(seg.end) - new Date(seg.start)) / spanMs * 100;
899: const left = (new Date(brk.start) - new Date(s.day_start)) / spanMs * 100;
900: const width = (new Date(brk.end) - new Date(brk.start)) / spanMs * 100;
[rerun: b4]
Thinking
Thinking
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT timestamp FROM frames ORDER BY timestamp DESC LIMIT 3; SELECT timestamp FROM frames ORDER BY timestamp ASC LIMIT 3;"
Copy code to clipboard
OUT
2026-04-13T14:19:10.998594+00:00
2026-04-13T14:19:08.686883+00:00
2026-04-13T14:19:06.581255+00:00
2026-04-09T16:53:09.043761+00:00
2026-04-09T16:53:19.073971+00:00
2026-04-09T16:53:20.618409+00:00
[rerun: b5]
Read
index.html
index.html
(lines 451-480)
Thinking
Thinking
Bash
IN
curl -s "http://localhost:8766/api/stats?d=2026-04-13" 2>&1 | head -50
Copy code to clipboard
OUT
{"date":"2026-04-13","total_frames":0,"first_seen":null,"last_seen":null,"unique_apps":0,"audio_segments":0,"ui_events":0}
[rerun: b6]
Thinking
Thinking
Bash
IN
ls /volume1/screenpipe/app/consumers/
Copy code to clipboard
OUT
activity.py
audio.py
elements.py
__init__.py
interactions.py
ocr.py
report.py
summary.py
[rerun: b7]
Read
activity.py
activity.py
Thinking
Thinking
Bash
IN
curl -s "http://localhost:8766/api/activity/apps?d=2026-04-13" 2>&1 | head -20
Copy code to clipboard
OUT
[]
[rerun: b8]
Bash
IN
python3 -c "
from datetime import date, datetime, timedelta, timezone
d = date(2026, 4, 13)
start = datetime(d.year, d.month, d.day, tzinfo=timezone.utc)
end = start + timedelta(days=1)
print('start:', repr(start.isoformat()))
print('end:', repr(end.isoformat()))
"
Copy code to clipboard
OUT
start: '2026-04-13T00:00:00+00:00'
end: '2026-04-14T00:00:00+00:00'
[rerun: b9]
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT COUNT(*) FROM frames WHERE timestamp >= '2026-04-13T00:00:00+00:00' AND timestamp < '2026-04-14T00:00:00+00:00';"
Copy code to clipboard
OUT
2643
[rerun: b10]
Thinking
Thinking
Read
Dockerfile
Dockerfile
Thinking
Thinking
The DB query on the host works fine (2643 frames), but the API inside the container returns 0. The volume mount likely isn't working. Let me test by running the app directly on the host:
Bash
IN
cd /volume1/screenpipe/app && python3 -c "
import sys
sys.path.insert(0, '.')
import os
os.environ['DB_PATH'] = '/volume1/screenpipe/db.sqlite'
# patch db module
import db
db.DB_PATH = '/volume1/screenpipe/db.sqlite'
from consumers.activity import app_time
from datetime import date
result = app_time(date(2026, 4, 13))
print('Result count:', len(result))
print('First:', result[0] if result else 'EMPTY')
" 2>&1
Copy code to clipboard
OUT
Result count: 12
First: {'app_name': 'Boosteroid', 'frame_count': 2292, 'minutes': 76.4}
[rerun: b11]
Thinking
Thinking
The Python code works perfectly with the real data. The Docker container's volume mount isn't reading the DB. The simplest fix for UGREEN NAS is to run the app directly without Docker, since Python is already available.
Let me also fix the default date to yesterday at the same time:
Bash
IN
python3 -c "import pkg_resources; pkgs=['fastapi','uvicorn','python-dotenv']; [print(p, pkg_resources.get_distribution(p).version) for p in pkgs]" 2>&1
Copy code to clipboard
OUT
Exit code 1
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "<string>", line 1, in <listcomp>
File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 514, in get_distribution
dist = get_provider(dist)
^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 386, in get_provider
return working_set.find(moduleOrReq) or require(str(moduleOrReq))[0]
^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 956, in require
needed = self.resolve(parse_requirements(requirements))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 815, in resolve
dist = self._resolve_dist(
^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 856, in _resolve_dist
raise DistributionNotFound(req, requirers)
pkg_resources.DistributionNotFound: The 'fastapi' distribution was not found and is required by the application
[rerun: b12]
Read
index.html
index.html
(lines 452-456)
Thinking
Thinking
Bash
IN
curl -s "http://localhost:8766/api/stats?d=2026-04-12" && echo && curl -s "http://localhost:8766/api/stats?d=2026-04-11"
Copy code to clipboard
OUT
{"date":"2026-04-12","total_frames":0,"first_seen":null,"last_seen":null,"unique_apps":0,"audio_segments":0,"ui_events":0}
{"date":"2026-04-11","total_frames":612,"first_seen":"2026-04-11T11:52:52.056865+00:00","last_seen":"2026-04-11T12:54:42.597794+00:00","unique_apps":6,"audio_segments":0,"ui_events":1344}
[rerun: b13]
Thinking
Thinking
Interesting — the container IS reading a DB, but an older version. The file was replaced after the container started. The container needs to be restarted to re-establish the bind mount. But before that, let me fix the default date to yesterday.
Read
index.html
index.html
(lines 453-456)
Edit
index.html
index.html
Modified
Now for the data issue — the container is reading an old DB. It needs to be restarted via
UGREEN's Container Manager
in the DSM web UI:
Open UGREEN NAS web UI →...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"Explorer (⇧⌘E)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":true},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Search (⇧⌘F)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Source Control (⌃⇧G)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Run and Debug (⇧⌘D)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Remote Explorer","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"2","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Claude Code","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Containers","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"EXPLORER","depth":17,"role_description":"heading"},{"role":"AXStaticText","text":"EXPLORER","depth":18,"role_description":"text"},{"role":"AXButton","text":"Explorer Section: screenpipe [SSH: 100.73.206.126]","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"Explorer Section: screenpipe [SSH: 100.73.206.126]","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"SCREENPIPE [SSH: 100.73.206.126]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"#recycle","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"app","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"__pycache__","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"consumers","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"static","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"cli.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"docker-compose.yml","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"Dockerfile","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"main.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"requirements.txt","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"data","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"pipes","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite-shm","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite-wal","depth":27,"role_description":"text"},{"role":"AXButton","text":"Outline Section","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"OUTLINE","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"OUTLINE","depth":23,"role_description":"text"},{"role":"AXButton","text":"Timeline Section","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"TIMELINE","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"TIMELINE","depth":23,"role_description":"text"},{"role":"AXRadioButton","text":"pipe.md, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Untitled-2, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"docker-compose.yml, preview, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXStaticText","text":"","depth":29,"role_description":"text"},{"role":"AXTextArea","text":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","depth":28,"value":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","role_description":"editor","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","depth":29,"role_description":"text"},{"role":"AXRadioButton","text":"Getting started with Cla…, Editor Group 2","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXRadioButton","text":"Problems (⇧⌘M)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"PROBLEMS","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Output (⇧⌘U)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUTPUT","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Debug Console (⇧⌘Y)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"DEBUG CONSOLE","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Terminal (⌃`)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":true},{"role":"AXStaticText","text":"TERMINAL","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Ports","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"PORTS","depth":24,"role_description":"text"},{"role":"AXButton","text":"remote SSH: 100.73.206.126","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"SSH: 100.73.206.126","depth":17,"role_description":"text"},{"role":"AXButton","text":"No Problems","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXButton","text":"No Ports Forwarded","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXButton","text":"Notifications","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sign In","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"Sign In","depth":17,"role_description":"text"},{"role":"AXButton","text":"Screen Reader Optimized","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Info: Setting up SSH Host 100.73.206.126: Setting up SSH tunnel","depth":12,"role_description":"text"},{"role":"AXStaticText","text":"Command Succeeded","depth":12,"role_description":"text"},{"role":"AXButton","text":"Getting started with Claude agent SDK","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Session history","depth":18,"help_text":"Session history","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New session","depth":18,"help_text":"New session","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"how to start it","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Let me check what's in your working directory to understand what you're referring to.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"app\ndata\ndb.sqlite\npipes\n#recycle\n[rerun: b1]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"cli.py\nconsumers\ndb.py\ndocker-compose.yml\nDockerfile\nmain.py\nrequirements.txt\nstatic\nai-habits\nday-recap\nmeeting-summary\nstandup-update\ntime-breakdown\nvideo-export\n[rerun: b2]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"docker-compose.yml","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker-compose.yml","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"This is a Screenpipe app with a Docker Compose setup. To start it:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app\ndocker compose up -d","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"This builds the image (first run) and starts the container in the background","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"The app will be accessible at","depth":23,"role_description":"text"},{"role":"AXLink","text":"http://your-server-ip:8766","depth":24,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"http://your-server-ip:8766","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"To check if it's running:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker compose ps","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"To view logs:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker compose logs -f","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Make sure an","depth":22,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"file exists in","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"before starting — the compose file references one (","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"env_file: .env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"). If it's missing, the container will fail to start.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app/.env 2>/dev/null && echo \"exists\" || echo \"MISSING\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/.env\nexists\n[rerun: b3]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"The","depth":22,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"file exists, so you're good to go. Just run:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app && docker compose up -d","depth":24,"role_description":"text"},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"docker-compose.yml","depth":22,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker-compose.yml","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"I opened it but there are no data after I coppied it there. the idea behind this app is to have the data pasted form screenpipe mac app and only query it and work with it","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Let me check the current state of the data.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls -lh /volume1/screenpipe/db.sqlite && ls /volume1/screenpipe/data/ | head -20","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"-rwxrwxrwx 1 Adm1n admin 423M Apr 13 17:20 /volume1/screenpipe/db.sqlite\n2026-04-09\n2026-04-11\n2026-04-12\n[rerun: b1]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \".tables\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"_sqlx_migrations meetings \naudio_chunks memories \naudio_tags memories_fts \naudio_transcriptions memories_fts_config \naudio_transcriptions_fts memories_fts_data \naudio_transcriptions_fts_config memories_fts_docsize \naudio_transcriptions_fts_data memories_fts_idx \naudio_transcriptions_fts_docsize ocr_text \naudio_transcriptions_fts_idx pipe_executions \nelements pipe_scheduler_state \nelements_fts speaker_embeddings \nelements_fts_config speakers \nelements_fts_data tags \nelements_fts_docsize ui_events \nelements_fts_idx ui_events_fts \nframes ui_events_fts_config \nframes_fts ui_events_fts_data \nframes_fts_config ui_events_fts_docsize \nframes_fts_content ui_events_fts_idx \nframes_fts_data video_chunks \nframes_fts_docsize vision_tags \nframes_fts_idx\n[rerun: b2]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \"SELECT COUNT(*) FROM frames; SELECT COUNT(*) FROM ocr_text; SELECT COUNT(*) FROM audio_transcriptions;\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"6923\n5464\n3\n[rerun: b3]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"The data is there — 423MB database with 6,923 frames and 5,464 OCR records. The app just isn't running yet. Let me check what the app actually does and whether it can query this data properly.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"main.py","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"main.py","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"db.py","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"db.py","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"The data is actually there — the database has 423MB of data. The app just needs to be started. Let me start it:","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app && docker compose up -d 2>&1","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Exit code 1\npermission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Get \"http://%2Fvar%2Frun%2Fdocker.sock/v1.45/containers/json?all=1&filters=%7B%22label%22%3A%7B%22com.docker.compose.config-hash%22%3Atrue%2C%22com.docker.compose.project%3Dapp%22%3Atrue%7D%7D\": dial unix /var/run/docker.sock: connect: permission denied\n[rerun: b4]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d 2>&1","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Exit code 1\nsudo: a terminal is required to read the password; either use the -S option to read from standard input or configure an askpass helper\nsudo: a password is required\n[rerun: b5]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"groups && id","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"admin users ughomeusers Media Social\nuid=1000(Adm1n) gid=10(admin) groups=10(admin),100(users),133(ughomeusers),1001(Media),1002(Social)\n[rerun: b6]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"You need to run Docker with elevated privileges. You're not in the","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"docker","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"group. There are two options:","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Option 1 — Run via Synology's Container Manager (DSM GUI)","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Open DSM → Container Manager → Project → Create project → point it to","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/docker-compose.yml","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Option 2 — Add yourself to the docker group (requires admin/root once)","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Open an SSH terminal as root (or via DSM terminal with admin):","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"sudo synogroup --add docker Adm1n\n# then log out and back in, then:\ncd /volume1/screenpipe/app && docker compose up -d","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Option 3 — Run it directly from an SSH session with sudo","depth":23,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"ssh admin@your-nas-ip\nsudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Once running, the dashboard will be at","depth":22,"role_description":"text"},{"role":"AXLink","text":"http://your-nas-ip:8766","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"http://your-nas-ip:8766","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"and it will query the data you already copied — the database has 6,923 frames and 5,464 OCR records ready to go.","depth":22,"role_description":"text"},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"docker-compose.yml","depth":22,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker-compose.yml","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"I have ugos ugreen nas. I can see the ui but it is empty. No data. Also when I open it there is defsault today, lets make default yesterday.","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Let me check why data isn't showing and look at the frontend.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \"SELECT DATE(timestamp) as d, COUNT(*) FROM frames GROUP BY d ORDER BY d DESC LIMIT 10;\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"2026-04-13|2643\n2026-04-12|2455\n2026-04-11|1302\n2026-04-09|523\n[rerun: b1]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app/static/","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"index.html\n[rerun: b2]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"wc -l /volume1/screenpipe/app/static/index.html","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"1048 /volume1/screenpipe/app/static/index.html\n[rerun: b3]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"grep -n \"today\\|new Date\\|date\\|default\" /volume1/screenpipe/app/static/index.html | head -40","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"24:input[type=\"date\"] {\n71:.sess-segment:hover { opacity: 0.8; cursor: default; }\n179:button:disabled { opacity: 0.4; cursor: default; }\n276: <input type=\"date\" id=\"datePicker\" onchange=\"refresh()\">\n336: <select id=\"sSrc\" onchange=\"updateSourceHint()\">\n356: <input type=\"date\" id=\"sDate\">\n388: <div id=\"workReportOut\"><div class=\"empty\">Click Generate Report to build a structured work summary for the selected date.</div></div>\n398: <option value=\"standup\">Standup Update</option>\n453:const dp = document.getElementById('datePicker');\n454:dp.value = new Date().toISOString().slice(0,10);\n525: // Re-render bars to update selection highlight\n679: const bucket = Math.floor(new Date(r.timestamp).getTime() / (everyMin * 60000));\n710:function updateSourceHint() {\n721: updateSourceHint();\n797: if (!rows.length) { el.innerHTML = '<div class=\"empty\">No audio for this date.</div>'; return; }\n835: try { return new Date(ts).toLocaleTimeString([],{hour:'2-digit',minute:'2-digit'}); }\n885: const spanMs = new Date(s.day_end) - new Date(s.day_start);\n891: const left = (new Date(seg.start) - new Date(s.day_start)) / spanMs * 100;\n892: const width = (new Date(seg.end) - new Date(seg.start)) / spanMs * 100;\n899: const left = (new Date(brk.start) - new Date(s.day_start)) / spanMs * 100;\n900: const width = (new Date(brk.end) - new Date(brk.start)) / spanMs * 100;\n[rerun: b4]","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \"SELECT timestamp FROM frames ORDER BY timestamp DESC LIMIT 3; SELECT timestamp FROM frames ORDER BY timestamp ASC LIMIT 3;\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"2026-04-13T14:19:10.998594+00:00\n2026-04-13T14:19:08.686883+00:00\n2026-04-13T14:19:06.581255+00:00\n2026-04-09T16:53:09.043761+00:00\n2026-04-09T16:53:19.073971+00:00\n2026-04-09T16:53:20.618409+00:00\n[rerun: b5]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"index.html","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"index.html","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"(lines 451-480)","depth":23,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"curl -s \"http://localhost:8766/api/stats?d=2026-04-13\" 2>&1 | head -50","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"{\"date\":\"2026-04-13\",\"total_frames\":0,\"first_seen\":null,\"last_seen\":null,\"unique_apps\":0,\"audio_segments\":0,\"ui_events\":0}\n[rerun: b6]","depth":23,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app/consumers/","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"activity.py\naudio.py\nelements.py\n__init__.py\ninteractions.py\nocr.py\nreport.py\nsummary.py\n[rerun: b7]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"activity.py","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"activity.py","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"curl -s \"http://localhost:8766/api/activity/apps?d=2026-04-13\" 2>&1 | head -20","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"[]\n[rerun: b8]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"python3 -c \"\nfrom datetime import date, datetime, timedelta, timezone\nd = date(2026, 4, 13)\nstart = datetime(d.year, d.month, d.day, tzinfo=timezone.utc)\nend = start + timedelta(days=1)\nprint('start:', repr(start.isoformat()))\nprint('end:', repr(end.isoformat()))\n\"","depth":25,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"start: '2026-04-13T00:00:00+00:00'\nend: '2026-04-14T00:00:00+00:00'\n[rerun: b9]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \"SELECT COUNT(*) FROM frames WHERE timestamp >= '2026-04-13T00:00:00+00:00' AND timestamp < '2026-04-14T00:00:00+00:00';\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"2643\n[rerun: b10]","depth":23,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"Dockerfile","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Dockerfile","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"The DB query on the host works fine (2643 frames), but the API inside the container returns 0. The volume mount likely isn't working. Let me test by running the app directly on the host:","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app && python3 -c \"\nimport sys\nsys.path.insert(0, '.')\nimport os\nos.environ['DB_PATH'] = '/volume1/screenpipe/db.sqlite'\n\n# patch db module\nimport db\ndb.DB_PATH = '/volume1/screenpipe/db.sqlite'\n\nfrom consumers.activity import app_time\nfrom datetime import date\nresult = app_time(date(2026, 4, 13))\nprint('Result count:', len(result))\nprint('First:', result[0] if result else 'EMPTY')\n\" 2>&1","depth":25,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Result count: 12\nFirst: {'app_name': 'Boosteroid', 'frame_count': 2292, 'minutes': 76.4}\n[rerun: b11]","depth":23,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"The Python code works perfectly with the real data. The Docker container's volume mount isn't reading the DB. The simplest fix for UGREEN NAS is to run the app directly without Docker, since Python is already available.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Let me also fix the default date to yesterday at the same time:","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"python3 -c \"import pkg_resources; pkgs=['fastapi','uvicorn','python-dotenv']; [print(p, pkg_resources.get_distribution(p).version) for p in pkgs]\" 2>&1","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Exit code 1\nTraceback (most recent call last):\n File \"<string>\", line 1, in <module>\n File \"<string>\", line 1, in <listcomp>\n File \"/usr/lib/python3/dist-packages/pkg_resources/__init__.py\", line 514, in get_distribution\n dist = get_provider(dist)\n ^^^^^^^^^^^^^^^^^^\n File \"/usr/lib/python3/dist-packages/pkg_resources/__init__.py\", line 386, in get_provider\n return working_set.find(moduleOrReq) or require(str(moduleOrReq))[0]\n ^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/lib/python3/dist-packages/pkg_resources/__init__.py\", line 956, in require\n needed = self.resolve(parse_requirements(requirements))\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/lib/python3/dist-packages/pkg_resources/__init__.py\", line 815, in resolve\n dist = self._resolve_dist(\n ^^^^^^^^^^^^^^^^^^^\n File \"/usr/lib/python3/dist-packages/pkg_resources/__init__.py\", line 856, in _resolve_dist\n raise DistributionNotFound(req, requirers)\npkg_resources.DistributionNotFound: The 'fastapi' distribution was not found and is required by the application\n[rerun: b12]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"index.html","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"index.html","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"(lines 452-456)","depth":23,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"curl -s \"http://localhost:8766/api/stats?d=2026-04-12\" && echo && curl -s \"http://localhost:8766/api/stats?d=2026-04-11\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"{\"date\":\"2026-04-12\",\"total_frames\":0,\"first_seen\":null,\"last_seen\":null,\"unique_apps\":0,\"audio_segments\":0,\"ui_events\":0}\n{\"date\":\"2026-04-11\",\"total_frames\":612,\"first_seen\":\"2026-04-11T11:52:52.056865+00:00\",\"last_seen\":\"2026-04-11T12:54:42.597794+00:00\",\"unique_apps\":6,\"audio_segments\":0,\"ui_events\":1344}\n[rerun: b13]","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Interesting — the container IS reading a DB, but an older version. The file was replaced after the container started. The container needs to be restarted to re-establish the bind mount. But before that, let me fix the default date to yesterday.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"index.html","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"index.html","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"(lines 453-456)","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Edit","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXLink","text":"index.html","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"index.html","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Modified","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Now for the data issue — the container is reading an old DB. It needs to be restarted via","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"UGREEN's Container Manager","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"in the DSM web UI:","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Open UGREEN NAS web UI →","depth":23,"role_description":"text"}]...
|
-3060721749579404098
|
-8267851012949502781
|
clipboard
|
accessibility
|
NULL
|
Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧ Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧G)
Run and Debug (⇧⌘D)
Remote Explorer
Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update
2
Claude Code
Containers
EXPLORER
EXPLORER
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
SCREENPIPE [SSH: [IP_ADDRESS]]
#recycle
app
__pycache__
consumers
static
.env
cli.py
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
data
pipes
db.sqlite
db.sqlite-shm
db.sqlite-wal
Outline Section
OUTLINE
OUTLINE
Timeline Section
TIMELINE
TIMELINE
pipe.md, Editor Group 1
Untitled-2, Editor Group 1
docker-compose.yml, preview, Editor Group 1
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
Getting started with Cla…, Editor Group 2
Problems (⇧⌘M)
PROBLEMS
Output (⇧⌘U)
OUTPUT
Debug Console (⇧⌘Y)
DEBUG CONSOLE
Terminal (⌃`)
TERMINAL
Ports
PORTS
remote SSH: [IP_ADDRESS]
SSH: [IP_ADDRESS]
No Problems
0
0
No Ports Forwarded
0
Notifications
Sign In
Sign In
Screen Reader Optimized
Info: Setting up SSH Host [IP_ADDRESS]: Setting up SSH tunnel
Command Succeeded
Getting started with Claude agent SDK
Session history
New session
Message actions
how to start it
Thinking
Thinking
Let me check what's in your working directory to understand what you're referring to.
Bash
IN
ls /volume1/screenpipe
Copy code to clipboard
OUT
app
data
db.sqlite
pipes
#recycle
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes
Copy code to clipboard
OUT
cli.py
consumers
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
static
ai-habits
day-recap
meeting-summary
standup-update
time-breakdown
video-export
[rerun: b2]
Read
docker-compose.yml
docker-compose.yml
This is a Screenpipe app with a Docker Compose setup. To start it:
Copy code to clipboard
cd /volume1/screenpipe/app
docker compose up -d
This builds the image (first run) and starts the container in the background
The app will be accessible at
[URL_WITH_CREDENTIALS]
sudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d
Once running, the dashboard will be at
http://your-nas-ip:8766
http://your-nas-ip:8766
and it will query the data you already copied — the database has 6,923 frames and 5,464 OCR records ready to go.
Message actions
docker-compose.yml
docker-compose.yml
I have ugos ugreen nas. I can see the ui but it is empty. No data. Also when I open it there is defsault today, lets make default yesterday.
Thinking
Thinking
Let me check why data isn't showing and look at the frontend.
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT DATE(timestamp) as d, COUNT(*) FROM frames GROUP BY d ORDER BY d DESC LIMIT 10;"
Copy code to clipboard
OUT
2026-04-13|2643
2026-04-12|2455
2026-04-11|1302
2026-04-09|523
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app/static/
Copy code to clipboard
OUT
index.html
[rerun: b2]
Bash
IN
wc -l /volume1/screenpipe/app/static/index.html
Copy code to clipboard
OUT
1048 /volume1/screenpipe/app/static/index.html
[rerun: b3]
Bash
IN
grep -n "today\|new Date\|date\|default" /volume1/screenpipe/app/static/index.html | head -40
Copy code to clipboard
OUT
24:input[type="date"] {
71:.sess-segment:hover { opacity: 0.8; cursor: default; }
179:button:disabled { opacity: 0.4; cursor: default; }
276: <input type="date" id="datePicker" onchange="refresh()">
336: <select id="sSrc" onchange="updateSourceHint()">
356: <input type="date" id="sDate">
388: <div id="workReportOut"><div class="empty">Click Generate Report to build a structured work summary for the selected date.</div></div>
398: <option value="standup">Standup Update</option>
453:const dp = document.getElementById('datePicker');
454:dp.value = new Date().toISOString().slice(0,10);
525: // Re-render bars to update selection highlight
679: const bucket = Math.floor(new Date(r.timestamp).getTime() / (everyMin * 60000));
710:function updateSourceHint() {
721: updateSourceHint();
797: if (!rows.length) { el.innerHTML = '<div class="empty">No audio for this date.</div>'; return; }
835: try { return new Date(ts).toLocaleTimeString([],{hour:'2-digit',minute:'2-digit'}); }
885: const spanMs = new Date(s.day_end) - new Date(s.day_start);
891: const left = (new Date(seg.start) - new Date(s.day_start)) / spanMs * 100;
892: const width = (new Date(seg.end) - new Date(seg.start)) / spanMs * 100;
899: const left = (new Date(brk.start) - new Date(s.day_start)) / spanMs * 100;
900: const width = (new Date(brk.end) - new Date(brk.start)) / spanMs * 100;
[rerun: b4]
Thinking
Thinking
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT timestamp FROM frames ORDER BY timestamp DESC LIMIT 3; SELECT timestamp FROM frames ORDER BY timestamp ASC LIMIT 3;"
Copy code to clipboard
OUT
2026-04-13T14:19:10.998594+00:00
2026-04-13T14:19:08.686883+00:00
2026-04-13T14:19:06.581255+00:00
2026-04-09T16:53:09.043761+00:00
2026-04-09T16:53:19.073971+00:00
2026-04-09T16:53:20.618409+00:00
[rerun: b5]
Read
index.html
index.html
(lines 451-480)
Thinking
Thinking
Bash
IN
curl -s "http://localhost:8766/api/stats?d=2026-04-13" 2>&1 | head -50
Copy code to clipboard
OUT
{"date":"2026-04-13","total_frames":0,"first_seen":null,"last_seen":null,"unique_apps":0,"audio_segments":0,"ui_events":0}
[rerun: b6]
Thinking
Thinking
Bash
IN
ls /volume1/screenpipe/app/consumers/
Copy code to clipboard
OUT
activity.py
audio.py
elements.py
__init__.py
interactions.py
ocr.py
report.py
summary.py
[rerun: b7]
Read
activity.py
activity.py
Thinking
Thinking
Bash
IN
curl -s "http://localhost:8766/api/activity/apps?d=2026-04-13" 2>&1 | head -20
Copy code to clipboard
OUT
[]
[rerun: b8]
Bash
IN
python3 -c "
from datetime import date, datetime, timedelta, timezone
d = date(2026, 4, 13)
start = datetime(d.year, d.month, d.day, tzinfo=timezone.utc)
end = start + timedelta(days=1)
print('start:', repr(start.isoformat()))
print('end:', repr(end.isoformat()))
"
Copy code to clipboard
OUT
start: '2026-04-13T00:00:00+00:00'
end: '2026-04-14T00:00:00+00:00'
[rerun: b9]
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT COUNT(*) FROM frames WHERE timestamp >= '2026-04-13T00:00:00+00:00' AND timestamp < '2026-04-14T00:00:00+00:00';"
Copy code to clipboard
OUT
2643
[rerun: b10]
Thinking
Thinking
Read
Dockerfile
Dockerfile
Thinking
Thinking
The DB query on the host works fine (2643 frames), but the API inside the container returns 0. The volume mount likely isn't working. Let me test by running the app directly on the host:
Bash
IN
cd /volume1/screenpipe/app && python3 -c "
import sys
sys.path.insert(0, '.')
import os
os.environ['DB_PATH'] = '/volume1/screenpipe/db.sqlite'
# patch db module
import db
db.DB_PATH = '/volume1/screenpipe/db.sqlite'
from consumers.activity import app_time
from datetime import date
result = app_time(date(2026, 4, 13))
print('Result count:', len(result))
print('First:', result[0] if result else 'EMPTY')
" 2>&1
Copy code to clipboard
OUT
Result count: 12
First: {'app_name': 'Boosteroid', 'frame_count': 2292, 'minutes': 76.4}
[rerun: b11]
Thinking
Thinking
The Python code works perfectly with the real data. The Docker container's volume mount isn't reading the DB. The simplest fix for UGREEN NAS is to run the app directly without Docker, since Python is already available.
Let me also fix the default date to yesterday at the same time:
Bash
IN
python3 -c "import pkg_resources; pkgs=['fastapi','uvicorn','python-dotenv']; [print(p, pkg_resources.get_distribution(p).version) for p in pkgs]" 2>&1
Copy code to clipboard
OUT
Exit code 1
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "<string>", line 1, in <listcomp>
File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 514, in get_distribution
dist = get_provider(dist)
^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 386, in get_provider
return working_set.find(moduleOrReq) or require(str(moduleOrReq))[0]
^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 956, in require
needed = self.resolve(parse_requirements(requirements))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 815, in resolve
dist = self._resolve_dist(
^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 856, in _resolve_dist
raise DistributionNotFound(req, requirers)
pkg_resources.DistributionNotFound: The 'fastapi' distribution was not found and is required by the application
[rerun: b12]
Read
index.html
index.html
(lines 452-456)
Thinking
Thinking
Bash
IN
curl -s "http://localhost:8766/api/stats?d=2026-04-12" && echo && curl -s "http://localhost:8766/api/stats?d=2026-04-11"
Copy code to clipboard
OUT
{"date":"2026-04-12","total_frames":0,"first_seen":null,"last_seen":null,"unique_apps":0,"audio_segments":0,"ui_events":0}
{"date":"2026-04-11","total_frames":612,"first_seen":"2026-04-11T11:52:52.056865+00:00","last_seen":"2026-04-11T12:54:42.597794+00:00","unique_apps":6,"audio_segments":0,"ui_events":1344}
[rerun: b13]
Thinking
Thinking
Interesting — the container IS reading a DB, but an older version. The file was replaced after the container started. The container needs to be restarted to re-establish the bind mount. But before that, let me fix the default date to yesterday.
Read
index.html
index.html
(lines 453-456)
Edit
index.html
index.html
Modified
Now for the data issue — the container is reading an old DB. It needs to be restarted via
UGREEN's Container Manager
in the DSM web UI:
Open UGREEN NAS web UI →...
|
NULL
|
|
7539
|
140
|
37
|
2026-04-13T16:00:22.671912+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096022671_m1.jpg...
|
Code
|
Getting started with Cla… — screenpipe [SSH: 100.7 Getting started with Cla… — screenpipe [SSH: 100.73.206.126]...
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧ Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧G)
Run and Debug (⇧⌘D)
Remote Explorer
Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update
2
Claude Code
Containers
EXPLORER
EXPLORER
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
SCREENPIPE [SSH: [IP_ADDRESS]]
#recycle
app
__pycache__
consumers
static
.env
cli.py
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
data
pipes
db.sqlite
db.sqlite-shm
db.sqlite-wal
Outline Section
OUTLINE
OUTLINE
Timeline Section
TIMELINE
TIMELINE
pipe.md, Editor Group 1
Untitled-2, Editor Group 1
docker-compose.yml, preview, Editor Group 1
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
Getting started with Cla…, Editor Group 2
Problems (⇧⌘M)
PROBLEMS
Output (⇧⌘U)
OUTPUT
Debug Console (⇧⌘Y)
DEBUG CONSOLE
Terminal (⌃`)
TERMINAL
Ports
PORTS
remote SSH: [IP_ADDRESS]
SSH: [IP_ADDRESS]
No Problems
0
0
No Ports Forwarded
0
Notifications
Sign In
Sign In
Screen Reader Optimized
Info: Setting up SSH Host [IP_ADDRESS]: Setting up SSH tunnel
Command Succeeded
Getting started with Claude agent SDK
Session history
New session
Message actions
how to start it
Thinking
Thinking
Let me check what's in your working directory to understand what you're referring to.
Bash
IN
ls /volume1/screenpipe
Copy code to clipboard
OUT
app
data
db.sqlite
pipes
#recycle
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes
Copy code to clipboard
OUT
cli.py
consumers
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
static
ai-habits
day-recap
meeting-summary
standup-update
time-breakdown
video-export
[rerun: b2]
Read
docker-compose.yml
docker-compose.yml
This is a Screenpipe app with a Docker Compose setup. To start it:
Copy code to clipboard
cd /volume1/screenpipe/app
docker compose up -d
This builds the image (first run) and starts the container in the background
The app will be accessible at
[URL_WITH_CREDENTIALS]
sudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d
Once running, the dashboard will be at
[URL_WITH_CREDENTIALS] sudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d but nothing changed
Thinking...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"Explorer (⇧⌘E)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":true},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Search (⇧⌘F)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Source Control (⌃⇧G)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Run and Debug (⇧⌘D)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Remote Explorer","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"2","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Claude Code","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Containers","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"EXPLORER","depth":17,"role_description":"heading"},{"role":"AXStaticText","text":"EXPLORER","depth":18,"role_description":"text"},{"role":"AXButton","text":"Explorer Section: screenpipe [SSH: 100.73.206.126]","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"Explorer Section: screenpipe [SSH: 100.73.206.126]","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"SCREENPIPE [SSH: 100.73.206.126]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"#recycle","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"app","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"__pycache__","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"consumers","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"static","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"cli.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"docker-compose.yml","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"Dockerfile","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"main.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"requirements.txt","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"data","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"pipes","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite-shm","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite-wal","depth":27,"role_description":"text"},{"role":"AXButton","text":"Outline Section","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"OUTLINE","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"OUTLINE","depth":23,"role_description":"text"},{"role":"AXButton","text":"Timeline Section","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"TIMELINE","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"TIMELINE","depth":23,"role_description":"text"},{"role":"AXRadioButton","text":"pipe.md, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Untitled-2, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"docker-compose.yml, preview, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXStaticText","text":"","depth":29,"role_description":"text"},{"role":"AXTextArea","text":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","depth":28,"value":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","role_description":"editor","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","depth":29,"role_description":"text"},{"role":"AXRadioButton","text":"Getting started with Cla…, Editor Group 2","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXRadioButton","text":"Problems (⇧⌘M)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"PROBLEMS","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Output (⇧⌘U)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUTPUT","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Debug Console (⇧⌘Y)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"DEBUG CONSOLE","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Terminal (⌃`)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":true},{"role":"AXStaticText","text":"TERMINAL","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Ports","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"PORTS","depth":24,"role_description":"text"},{"role":"AXButton","text":"remote SSH: 100.73.206.126","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"SSH: 100.73.206.126","depth":17,"role_description":"text"},{"role":"AXButton","text":"No Problems","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXButton","text":"No Ports Forwarded","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXButton","text":"Notifications","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sign In","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"Sign In","depth":17,"role_description":"text"},{"role":"AXButton","text":"Screen Reader Optimized","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Info: Setting up SSH Host 100.73.206.126: Setting up SSH tunnel","depth":12,"role_description":"text"},{"role":"AXStaticText","text":"Command Succeeded","depth":12,"role_description":"text"},{"role":"AXButton","text":"Getting started with Claude agent SDK","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Session history","depth":18,"help_text":"Session history","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New session","depth":18,"help_text":"New session","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"how to start it","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Let me check what's in your working directory to understand what you're referring to.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"app\ndata\ndb.sqlite\npipes\n#recycle\n[rerun: b1]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"cli.py\nconsumers\ndb.py\ndocker-compose.yml\nDockerfile\nmain.py\nrequirements.txt\nstatic\nai-habits\nday-recap\nmeeting-summary\nstandup-update\ntime-breakdown\nvideo-export\n[rerun: b2]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"docker-compose.yml","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker-compose.yml","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"This is a Screenpipe app with a Docker Compose setup. To start it:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app\ndocker compose up -d","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"This builds the image (first run) and starts the container in the background","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"The app will be accessible at","depth":23,"role_description":"text"},{"role":"AXLink","text":"http://your-server-ip:8766","depth":24,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"http://your-server-ip:8766","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"To check if it's running:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker compose ps","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"To view logs:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker compose logs -f","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Make sure an","depth":22,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"file exists in","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"before starting — the compose file references one (","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"env_file: .env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"). If it's missing, the container will fail to start.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app/.env 2>/dev/null && echo \"exists\" || echo \"MISSING\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/.env\nexists\n[rerun: b3]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"The","depth":22,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"file exists, so you're good to go. Just run:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app && docker compose up -d","depth":24,"role_description":"text"},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"docker-compose.yml","depth":22,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker-compose.yml","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"I opened it but there are no data after I coppied it there. the idea behind this app is to have the data pasted form screenpipe mac app and only query it and work with it","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Let me check the current state of the data.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls -lh /volume1/screenpipe/db.sqlite && ls /volume1/screenpipe/data/ | head -20","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"-rwxrwxrwx 1 Adm1n admin 423M Apr 13 17:20 /volume1/screenpipe/db.sqlite\n2026-04-09\n2026-04-11\n2026-04-12\n[rerun: b1]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \".tables\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"_sqlx_migrations meetings \naudio_chunks memories \naudio_tags memories_fts \naudio_transcriptions memories_fts_config \naudio_transcriptions_fts memories_fts_data \naudio_transcriptions_fts_config memories_fts_docsize \naudio_transcriptions_fts_data memories_fts_idx \naudio_transcriptions_fts_docsize ocr_text \naudio_transcriptions_fts_idx pipe_executions \nelements pipe_scheduler_state \nelements_fts speaker_embeddings \nelements_fts_config speakers \nelements_fts_data tags \nelements_fts_docsize ui_events \nelements_fts_idx ui_events_fts \nframes ui_events_fts_config \nframes_fts ui_events_fts_data \nframes_fts_config ui_events_fts_docsize \nframes_fts_content ui_events_fts_idx \nframes_fts_data video_chunks \nframes_fts_docsize vision_tags \nframes_fts_idx\n[rerun: b2]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \"SELECT COUNT(*) FROM frames; SELECT COUNT(*) FROM ocr_text; SELECT COUNT(*) FROM audio_transcriptions;\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"6923\n5464\n3\n[rerun: b3]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"The data is there — 423MB database with 6,923 frames and 5,464 OCR records. The app just isn't running yet. Let me check what the app actually does and whether it can query this data properly.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"main.py","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"main.py","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"db.py","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"db.py","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"The data is actually there — the database has 423MB of data. The app just needs to be started. Let me start it:","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app && docker compose up -d 2>&1","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Exit code 1\npermission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Get \"http://%2Fvar%2Frun%2Fdocker.sock/v1.45/containers/json?all=1&filters=%7B%22label%22%3A%7B%22com.docker.compose.config-hash%22%3Atrue%2C%22com.docker.compose.project%3Dapp%22%3Atrue%7D%7D\": dial unix /var/run/docker.sock: connect: permission denied\n[rerun: b4]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d 2>&1","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Exit code 1\nsudo: a terminal is required to read the password; either use the -S option to read from standard input or configure an askpass helper\nsudo: a password is required\n[rerun: b5]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"groups && id","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"admin users ughomeusers Media Social\nuid=1000(Adm1n) gid=10(admin) groups=10(admin),100(users),133(ughomeusers),1001(Media),1002(Social)\n[rerun: b6]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"You need to run Docker with elevated privileges. You're not in the","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"docker","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"group. There are two options:","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Option 1 — Run via Synology's Container Manager (DSM GUI)","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Open DSM → Container Manager → Project → Create project → point it to","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/docker-compose.yml","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Option 2 — Add yourself to the docker group (requires admin/root once)","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Open an SSH terminal as root (or via DSM terminal with admin):","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"sudo synogroup --add docker Adm1n\n# then log out and back in, then:\ncd /volume1/screenpipe/app && docker compose up -d","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Option 3 — Run it directly from an SSH session with sudo","depth":23,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"ssh admin@your-nas-ip\nsudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Once running, the dashboard will be at","depth":22,"role_description":"text"},{"role":"AXLink","text":"http://your-nas-ip:8766","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"http://your-nas-ip:8766","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"and it will query the data you already copied — the database has 6,923 frames and 5,464 OCR records ready to go.","depth":22,"role_description":"text"},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"docker-compose.yml","depth":22,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker-compose.yml","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"I have ugos ugreen nas. I can see the ui but it is empty. No data. Also when I open it there is defsault today, lets make default yesterday.","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Let me check why data isn't showing and look at the frontend.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \"SELECT DATE(timestamp) as d, COUNT(*) FROM frames GROUP BY d ORDER BY d DESC LIMIT 10;\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"2026-04-13|2643\n2026-04-12|2455\n2026-04-11|1302\n2026-04-09|523\n[rerun: b1]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app/static/","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"index.html\n[rerun: b2]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"wc -l /volume1/screenpipe/app/static/index.html","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"1048 /volume1/screenpipe/app/static/index.html\n[rerun: b3]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"grep -n \"today\\|new Date\\|date\\|default\" /volume1/screenpipe/app/static/index.html | head -40","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"24:input[type=\"date\"] {\n71:.sess-segment:hover { opacity: 0.8; cursor: default; }\n179:button:disabled { opacity: 0.4; cursor: default; }\n276: <input type=\"date\" id=\"datePicker\" onchange=\"refresh()\">\n336: <select id=\"sSrc\" onchange=\"updateSourceHint()\">\n356: <input type=\"date\" id=\"sDate\">\n388: <div id=\"workReportOut\"><div class=\"empty\">Click Generate Report to build a structured work summary for the selected date.</div></div>\n398: <option value=\"standup\">Standup Update</option>\n453:const dp = document.getElementById('datePicker');\n454:dp.value = new Date().toISOString().slice(0,10);\n525: // Re-render bars to update selection highlight\n679: const bucket = Math.floor(new Date(r.timestamp).getTime() / (everyMin * 60000));\n710:function updateSourceHint() {\n721: updateSourceHint();\n797: if (!rows.length) { el.innerHTML = '<div class=\"empty\">No audio for this date.</div>'; return; }\n835: try { return new Date(ts).toLocaleTimeString([],{hour:'2-digit',minute:'2-digit'}); }\n885: const spanMs = new Date(s.day_end) - new Date(s.day_start);\n891: const left = (new Date(seg.start) - new Date(s.day_start)) / spanMs * 100;\n892: const width = (new Date(seg.end) - new Date(seg.start)) / spanMs * 100;\n899: const left = (new Date(brk.start) - new Date(s.day_start)) / spanMs * 100;\n900: const width = (new Date(brk.end) - new Date(brk.start)) / spanMs * 100;\n[rerun: b4]","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \"SELECT timestamp FROM frames ORDER BY timestamp DESC LIMIT 3; SELECT timestamp FROM frames ORDER BY timestamp ASC LIMIT 3;\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"2026-04-13T14:19:10.998594+00:00\n2026-04-13T14:19:08.686883+00:00\n2026-04-13T14:19:06.581255+00:00\n2026-04-09T16:53:09.043761+00:00\n2026-04-09T16:53:19.073971+00:00\n2026-04-09T16:53:20.618409+00:00\n[rerun: b5]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"index.html","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"index.html","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"(lines 451-480)","depth":23,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"curl -s \"http://localhost:8766/api/stats?d=2026-04-13\" 2>&1 | head -50","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"{\"date\":\"2026-04-13\",\"total_frames\":0,\"first_seen\":null,\"last_seen\":null,\"unique_apps\":0,\"audio_segments\":0,\"ui_events\":0}\n[rerun: b6]","depth":23,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app/consumers/","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"activity.py\naudio.py\nelements.py\n__init__.py\ninteractions.py\nocr.py\nreport.py\nsummary.py\n[rerun: b7]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"activity.py","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"activity.py","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"curl -s \"http://localhost:8766/api/activity/apps?d=2026-04-13\" 2>&1 | head -20","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"[]\n[rerun: b8]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"python3 -c \"\nfrom datetime import date, datetime, timedelta, timezone\nd = date(2026, 4, 13)\nstart = datetime(d.year, d.month, d.day, tzinfo=timezone.utc)\nend = start + timedelta(days=1)\nprint('start:', repr(start.isoformat()))\nprint('end:', repr(end.isoformat()))\n\"","depth":25,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"start: '2026-04-13T00:00:00+00:00'\nend: '2026-04-14T00:00:00+00:00'\n[rerun: b9]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \"SELECT COUNT(*) FROM frames WHERE timestamp >= '2026-04-13T00:00:00+00:00' AND timestamp < '2026-04-14T00:00:00+00:00';\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"2643\n[rerun: b10]","depth":23,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"Dockerfile","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Dockerfile","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"The DB query on the host works fine (2643 frames), but the API inside the container returns 0. The volume mount likely isn't working. Let me test by running the app directly on the host:","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app && python3 -c \"\nimport sys\nsys.path.insert(0, '.')\nimport os\nos.environ['DB_PATH'] = '/volume1/screenpipe/db.sqlite'\n\n# patch db module\nimport db\ndb.DB_PATH = '/volume1/screenpipe/db.sqlite'\n\nfrom consumers.activity import app_time\nfrom datetime import date\nresult = app_time(date(2026, 4, 13))\nprint('Result count:', len(result))\nprint('First:', result[0] if result else 'EMPTY')\n\" 2>&1","depth":25,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Result count: 12\nFirst: {'app_name': 'Boosteroid', 'frame_count': 2292, 'minutes': 76.4}\n[rerun: b11]","depth":23,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"The Python code works perfectly with the real data. The Docker container's volume mount isn't reading the DB. The simplest fix for UGREEN NAS is to run the app directly without Docker, since Python is already available.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Let me also fix the default date to yesterday at the same time:","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"python3 -c \"import pkg_resources; pkgs=['fastapi','uvicorn','python-dotenv']; [print(p, pkg_resources.get_distribution(p).version) for p in pkgs]\" 2>&1","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Exit code 1\nTraceback (most recent call last):\n File \"<string>\", line 1, in <module>\n File \"<string>\", line 1, in <listcomp>\n File \"/usr/lib/python3/dist-packages/pkg_resources/__init__.py\", line 514, in get_distribution\n dist = get_provider(dist)\n ^^^^^^^^^^^^^^^^^^\n File \"/usr/lib/python3/dist-packages/pkg_resources/__init__.py\", line 386, in get_provider\n return working_set.find(moduleOrReq) or require(str(moduleOrReq))[0]\n ^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/lib/python3/dist-packages/pkg_resources/__init__.py\", line 956, in require\n needed = self.resolve(parse_requirements(requirements))\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/lib/python3/dist-packages/pkg_resources/__init__.py\", line 815, in resolve\n dist = self._resolve_dist(\n ^^^^^^^^^^^^^^^^^^^\n File \"/usr/lib/python3/dist-packages/pkg_resources/__init__.py\", line 856, in _resolve_dist\n raise DistributionNotFound(req, requirers)\npkg_resources.DistributionNotFound: The 'fastapi' distribution was not found and is required by the application\n[rerun: b12]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"index.html","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"index.html","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"(lines 452-456)","depth":23,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"curl -s \"http://localhost:8766/api/stats?d=2026-04-12\" && echo && curl -s \"http://localhost:8766/api/stats?d=2026-04-11\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"{\"date\":\"2026-04-12\",\"total_frames\":0,\"first_seen\":null,\"last_seen\":null,\"unique_apps\":0,\"audio_segments\":0,\"ui_events\":0}\n{\"date\":\"2026-04-11\",\"total_frames\":612,\"first_seen\":\"2026-04-11T11:52:52.056865+00:00\",\"last_seen\":\"2026-04-11T12:54:42.597794+00:00\",\"unique_apps\":6,\"audio_segments\":0,\"ui_events\":1344}\n[rerun: b13]","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Interesting — the container IS reading a DB, but an older version. The file was replaced after the container started. The container needs to be restarted to re-establish the bind mount. But before that, let me fix the default date to yesterday.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"index.html","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"index.html","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"(lines 453-456)","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Edit","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXLink","text":"index.html","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"index.html","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Modified","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Now for the data issue — the container is reading an old DB. It needs to be restarted via","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"UGREEN's Container Manager","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"in the DSM web UI:","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Open UGREEN NAS web UI →","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Container Manager","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"(or Docker app)","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Find the","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"screenpipe-app","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"container","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Click","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Stop","depth":24,"role_description":"text"},{"role":"AXStaticText","text":", then","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Start","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"(or","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Restart","depth":24,"role_description":"text"},{"role":"AXStaticText","text":")","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"That will re-establish the bind mount to the current","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite","depth":23,"role_description":"text"},{"role":"AXStaticText","text":".","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Summary of what I fixed:","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Default date is now","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"yesterday","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"(the JS subtracts 1 day)","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Why data was empty:","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"The container started with an older DB, then you replaced the file with the full Mac export. Linux bind mounts can lose track when a file is replaced rather than updated in-place — restarting the container fixes this.","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"After restarting, April 12 should show 2,455 frames and April 13 should show 2,643 frames.","depth":22,"role_description":"text"},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"I run Adm1n@DXP4800PLUS-B5F8:/volume1/screenpipe$ sudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d but nothing changed","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
5303514289392960835
|
-8267851012965235517
|
idle
|
accessibility
|
NULL
|
Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧ Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧G)
Run and Debug (⇧⌘D)
Remote Explorer
Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update
2
Claude Code
Containers
EXPLORER
EXPLORER
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
SCREENPIPE [SSH: [IP_ADDRESS]]
#recycle
app
__pycache__
consumers
static
.env
cli.py
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
data
pipes
db.sqlite
db.sqlite-shm
db.sqlite-wal
Outline Section
OUTLINE
OUTLINE
Timeline Section
TIMELINE
TIMELINE
pipe.md, Editor Group 1
Untitled-2, Editor Group 1
docker-compose.yml, preview, Editor Group 1
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
Getting started with Cla…, Editor Group 2
Problems (⇧⌘M)
PROBLEMS
Output (⇧⌘U)
OUTPUT
Debug Console (⇧⌘Y)
DEBUG CONSOLE
Terminal (⌃`)
TERMINAL
Ports
PORTS
remote SSH: [IP_ADDRESS]
SSH: [IP_ADDRESS]
No Problems
0
0
No Ports Forwarded
0
Notifications
Sign In
Sign In
Screen Reader Optimized
Info: Setting up SSH Host [IP_ADDRESS]: Setting up SSH tunnel
Command Succeeded
Getting started with Claude agent SDK
Session history
New session
Message actions
how to start it
Thinking
Thinking
Let me check what's in your working directory to understand what you're referring to.
Bash
IN
ls /volume1/screenpipe
Copy code to clipboard
OUT
app
data
db.sqlite
pipes
#recycle
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes
Copy code to clipboard
OUT
cli.py
consumers
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
static
ai-habits
day-recap
meeting-summary
standup-update
time-breakdown
video-export
[rerun: b2]
Read
docker-compose.yml
docker-compose.yml
This is a Screenpipe app with a Docker Compose setup. To start it:
Copy code to clipboard
cd /volume1/screenpipe/app
docker compose up -d
This builds the image (first run) and starts the container in the background
The app will be accessible at
[URL_WITH_CREDENTIALS]
sudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d
Once running, the dashboard will be at
[URL_WITH_CREDENTIALS] sudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d but nothing changed
Thinking...
|
7538
|
|
7540
|
140
|
38
|
2026-04-13T16:00:52.934975+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096052934_m1.jpg...
|
Code
|
Getting started with Cla… — screenpipe [SSH: 100.7 Getting started with Cla… — screenpipe [SSH: 100.73.206.126]...
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧ Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧G)
Run and Debug (⇧⌘D)
Remote Explorer
Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update
2
Claude Code
Containers
EXPLORER
EXPLORER
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
SCREENPIPE [SSH: [IP_ADDRESS]]
#recycle
app
__pycache__
consumers
static
.env
cli.py
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
data
pipes
db.sqlite
db.sqlite-shm
db.sqlite-wal
Outline Section
OUTLINE
OUTLINE
Timeline Section
TIMELINE
TIMELINE
pipe.md, Editor Group 1
Untitled-2, Editor Group 1
docker-compose.yml, preview, Editor Group 1
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
Getting started with Cla…, Editor Group 2
Problems (⇧⌘M)
PROBLEMS
Output (⇧⌘U)
OUTPUT
Debug Console (⇧⌘Y)
DEBUG CONSOLE
Terminal (⌃`)
TERMINAL
Ports
PORTS
remote SSH: [IP_ADDRESS]
SSH: [IP_ADDRESS]
No Problems
0
0
No Ports Forwarded
0
Notifications
Sign In
Sign In
Screen Reader Optimized
Info: Setting up SSH Host [IP_ADDRESS]: Setting up SSH tunnel
Command Succeeded
Getting started with Claude agent SDK
Session history
New session
Message actions
how to start it
Thinking
Thinking
Let me check what's in your working directory to understand what you're referring to.
Bash
IN
ls /volume1/screenpipe
Copy code to clipboard
OUT
app
data
db.sqlite
pipes
#recycle
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes
Copy code to clipboard
OUT
cli.py
consumers
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
static
ai-habits
day-recap
meeting-summary
standup-update
time-breakdown
video-export
[rerun: b2]
Read
docker-compose.yml
docker-compose.yml
This is a Screenpipe app with a Docker Compose setup. To start it:
Copy code to clipboard
cd /volume1/screenpipe/app
docker compose up -d
This builds the image (first run) and starts the container in the background
The app will be accessible at
[URL_WITH_CREDENTIALS]
sudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d
Once running, the dashboard will be at
http://your-nas-ip:8766
http://your-nas-ip:8766
and it will query the data you already copied — the database has 6,923 frames and 5,464 OCR records ready to go.
Message actions
docker-compose.yml
docker-compose.yml
I have ugos ugreen nas. I can see the ui but it is empty. No data. Also when I open it there is defsault today, lets make default yesterday.
Thinking
Thinking
Let me check why data isn't showing and look at the frontend.
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT DATE(timestamp) as d, COUNT(*) FROM frames GROUP BY d ORDER BY d DESC LIMIT 10;"
Copy code to clipboard
OUT
2026-04-13|2643
2026-04-12|2455
2026-04-11|1302
2026-04-09|523
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app/static/
Copy code to clipboard
OUT
index.html
[rerun: b2]
Bash
IN
wc -l /volume1/screenpipe/app/static/index.html
Copy code to clipboard
OUT
1048 /volume1/screenpipe/app/static/index.html
[rerun: b3]
Bash
IN
grep -n "today\|new Date\|date\|default" /volume1/screenpipe/app/static/index.html | head -40
Copy code to clipboard
OUT
24:input[type="date"] {
71:.sess-segment:hover { opacity: 0.8; cursor: default; }
179:button:disabled { opacity: 0.4; cursor: default; }
276: <input type="date" id="datePicker" onchange="refresh()">
336: <select id="sSrc" onchange="updateSourceHint()">
356: <input type="date" id="sDate">
388: <div id="workReportOut"><div class="empty">Click Generate Report to build a structured work summary for the selected date.</div></div>
398: <option value="standup">Standup Update</option>
453:const dp = document.getElementById('datePicker');
454:dp.value = new Date().toISOString().slice(0,10);
525: // Re-render bars to update selection highlight
679: const bucket = Math.floor(new Date(r.timestamp).getTime() / (everyMin * 60000));
710:function updateSourceHint() {
721: updateSourceHint();
797: if (!rows.length) { el.innerHTML = '<div class="empty">No audio for this date.</div>'; return; }
835: try { return new Date(ts).toLocaleTimeString([],{hour:'2-digit',minute:'2-digit'}); }
885: const spanMs = new Date(s.day_end) - new Date(s.day_start);
891: const left = (new Date(seg.start) - new Date(s.day_start)) / spanMs * 100;
892: const width = (new Date(seg.end) - new Date(seg.start)) / spanMs * 100;
899: const left = (new Date(brk.start) - new Date(s.day_start)) / spanMs * 100;
900: const width = (new Date(brk.end) - new Date(brk.start)) / spanMs * 100;
[rerun: b4]
Thinking
Thinking
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT timestamp FROM frames ORDER BY timestamp DESC LIMIT 3; SELECT timestamp FROM frames ORDER BY timestamp ASC LIMIT 3;"
Copy code to clipboard...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"Explorer (⇧⌘E)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":true},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Search (⇧⌘F)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Source Control (⌃⇧G)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Run and Debug (⇧⌘D)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Remote Explorer","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"2","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Claude Code","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Containers","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"EXPLORER","depth":17,"role_description":"heading"},{"role":"AXStaticText","text":"EXPLORER","depth":18,"role_description":"text"},{"role":"AXButton","text":"Explorer Section: screenpipe [SSH: 100.73.206.126]","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"Explorer Section: screenpipe [SSH: 100.73.206.126]","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"SCREENPIPE [SSH: 100.73.206.126]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"#recycle","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"app","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"__pycache__","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"consumers","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"static","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"cli.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"docker-compose.yml","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"Dockerfile","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"main.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"requirements.txt","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"data","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"pipes","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite-shm","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite-wal","depth":27,"role_description":"text"},{"role":"AXButton","text":"Outline Section","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"OUTLINE","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"OUTLINE","depth":23,"role_description":"text"},{"role":"AXButton","text":"Timeline Section","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"TIMELINE","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"TIMELINE","depth":23,"role_description":"text"},{"role":"AXRadioButton","text":"pipe.md, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Untitled-2, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"docker-compose.yml, preview, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXStaticText","text":"","depth":29,"role_description":"text"},{"role":"AXTextArea","text":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","depth":28,"value":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","role_description":"editor","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","depth":29,"role_description":"text"},{"role":"AXRadioButton","text":"Getting started with Cla…, Editor Group 2","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXRadioButton","text":"Problems (⇧⌘M)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"PROBLEMS","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Output (⇧⌘U)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUTPUT","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Debug Console (⇧⌘Y)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"DEBUG CONSOLE","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Terminal (⌃`)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":true},{"role":"AXStaticText","text":"TERMINAL","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Ports","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"PORTS","depth":24,"role_description":"text"},{"role":"AXButton","text":"remote SSH: 100.73.206.126","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"SSH: 100.73.206.126","depth":17,"role_description":"text"},{"role":"AXButton","text":"No Problems","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXButton","text":"No Ports Forwarded","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXButton","text":"Notifications","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sign In","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"Sign In","depth":17,"role_description":"text"},{"role":"AXButton","text":"Screen Reader Optimized","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Info: Setting up SSH Host 100.73.206.126: Setting up SSH tunnel","depth":12,"role_description":"text"},{"role":"AXStaticText","text":"Command Succeeded","depth":12,"role_description":"text"},{"role":"AXButton","text":"Getting started with Claude agent SDK","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Session history","depth":18,"help_text":"Session history","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New session","depth":18,"help_text":"New session","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"how to start it","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Let me check what's in your working directory to understand what you're referring to.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"app\ndata\ndb.sqlite\npipes\n#recycle\n[rerun: b1]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"cli.py\nconsumers\ndb.py\ndocker-compose.yml\nDockerfile\nmain.py\nrequirements.txt\nstatic\nai-habits\nday-recap\nmeeting-summary\nstandup-update\ntime-breakdown\nvideo-export\n[rerun: b2]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"docker-compose.yml","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker-compose.yml","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"This is a Screenpipe app with a Docker Compose setup. To start it:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app\ndocker compose up -d","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"This builds the image (first run) and starts the container in the background","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"The app will be accessible at","depth":23,"role_description":"text"},{"role":"AXLink","text":"http://your-server-ip:8766","depth":24,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"http://your-server-ip:8766","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"To check if it's running:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker compose ps","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"To view logs:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker compose logs -f","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Make sure an","depth":22,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"file exists in","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"before starting — the compose file references one (","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"env_file: .env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"). If it's missing, the container will fail to start.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app/.env 2>/dev/null && echo \"exists\" || echo \"MISSING\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/.env\nexists\n[rerun: b3]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"The","depth":22,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"file exists, so you're good to go. Just run:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app && docker compose up -d","depth":24,"role_description":"text"},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"docker-compose.yml","depth":22,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker-compose.yml","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"I opened it but there are no data after I coppied it there. the idea behind this app is to have the data pasted form screenpipe mac app and only query it and work with it","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Let me check the current state of the data.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls -lh /volume1/screenpipe/db.sqlite && ls /volume1/screenpipe/data/ | head -20","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"-rwxrwxrwx 1 Adm1n admin 423M Apr 13 17:20 /volume1/screenpipe/db.sqlite\n2026-04-09\n2026-04-11\n2026-04-12\n[rerun: b1]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \".tables\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"_sqlx_migrations meetings \naudio_chunks memories \naudio_tags memories_fts \naudio_transcriptions memories_fts_config \naudio_transcriptions_fts memories_fts_data \naudio_transcriptions_fts_config memories_fts_docsize \naudio_transcriptions_fts_data memories_fts_idx \naudio_transcriptions_fts_docsize ocr_text \naudio_transcriptions_fts_idx pipe_executions \nelements pipe_scheduler_state \nelements_fts speaker_embeddings \nelements_fts_config speakers \nelements_fts_data tags \nelements_fts_docsize ui_events \nelements_fts_idx ui_events_fts \nframes ui_events_fts_config \nframes_fts ui_events_fts_data \nframes_fts_config ui_events_fts_docsize \nframes_fts_content ui_events_fts_idx \nframes_fts_data video_chunks \nframes_fts_docsize vision_tags \nframes_fts_idx\n[rerun: b2]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \"SELECT COUNT(*) FROM frames; SELECT COUNT(*) FROM ocr_text; SELECT COUNT(*) FROM audio_transcriptions;\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"6923\n5464\n3\n[rerun: b3]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"The data is there — 423MB database with 6,923 frames and 5,464 OCR records. The app just isn't running yet. Let me check what the app actually does and whether it can query this data properly.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"main.py","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"main.py","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"db.py","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"db.py","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"The data is actually there — the database has 423MB of data. The app just needs to be started. Let me start it:","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app && docker compose up -d 2>&1","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Exit code 1\npermission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Get \"http://%2Fvar%2Frun%2Fdocker.sock/v1.45/containers/json?all=1&filters=%7B%22label%22%3A%7B%22com.docker.compose.config-hash%22%3Atrue%2C%22com.docker.compose.project%3Dapp%22%3Atrue%7D%7D\": dial unix /var/run/docker.sock: connect: permission denied\n[rerun: b4]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d 2>&1","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Exit code 1\nsudo: a terminal is required to read the password; either use the -S option to read from standard input or configure an askpass helper\nsudo: a password is required\n[rerun: b5]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"groups && id","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"admin users ughomeusers Media Social\nuid=1000(Adm1n) gid=10(admin) groups=10(admin),100(users),133(ughomeusers),1001(Media),1002(Social)\n[rerun: b6]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"You need to run Docker with elevated privileges. You're not in the","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"docker","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"group. There are two options:","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Option 1 — Run via Synology's Container Manager (DSM GUI)","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Open DSM → Container Manager → Project → Create project → point it to","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/docker-compose.yml","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Option 2 — Add yourself to the docker group (requires admin/root once)","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Open an SSH terminal as root (or via DSM terminal with admin):","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"sudo synogroup --add docker Adm1n\n# then log out and back in, then:\ncd /volume1/screenpipe/app && docker compose up -d","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Option 3 — Run it directly from an SSH session with sudo","depth":23,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"ssh admin@your-nas-ip\nsudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Once running, the dashboard will be at","depth":22,"role_description":"text"},{"role":"AXLink","text":"http://your-nas-ip:8766","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"http://your-nas-ip:8766","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"and it will query the data you already copied — the database has 6,923 frames and 5,464 OCR records ready to go.","depth":22,"role_description":"text"},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"docker-compose.yml","depth":22,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker-compose.yml","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"I have ugos ugreen nas. I can see the ui but it is empty. No data. Also when I open it there is defsault today, lets make default yesterday.","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Let me check why data isn't showing and look at the frontend.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \"SELECT DATE(timestamp) as d, COUNT(*) FROM frames GROUP BY d ORDER BY d DESC LIMIT 10;\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"2026-04-13|2643\n2026-04-12|2455\n2026-04-11|1302\n2026-04-09|523\n[rerun: b1]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app/static/","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"index.html\n[rerun: b2]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"wc -l /volume1/screenpipe/app/static/index.html","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"1048 /volume1/screenpipe/app/static/index.html\n[rerun: b3]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"grep -n \"today\\|new Date\\|date\\|default\" /volume1/screenpipe/app/static/index.html | head -40","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"24:input[type=\"date\"] {\n71:.sess-segment:hover { opacity: 0.8; cursor: default; }\n179:button:disabled { opacity: 0.4; cursor: default; }\n276: <input type=\"date\" id=\"datePicker\" onchange=\"refresh()\">\n336: <select id=\"sSrc\" onchange=\"updateSourceHint()\">\n356: <input type=\"date\" id=\"sDate\">\n388: <div id=\"workReportOut\"><div class=\"empty\">Click Generate Report to build a structured work summary for the selected date.</div></div>\n398: <option value=\"standup\">Standup Update</option>\n453:const dp = document.getElementById('datePicker');\n454:dp.value = new Date().toISOString().slice(0,10);\n525: // Re-render bars to update selection highlight\n679: const bucket = Math.floor(new Date(r.timestamp).getTime() / (everyMin * 60000));\n710:function updateSourceHint() {\n721: updateSourceHint();\n797: if (!rows.length) { el.innerHTML = '<div class=\"empty\">No audio for this date.</div>'; return; }\n835: try { return new Date(ts).toLocaleTimeString([],{hour:'2-digit',minute:'2-digit'}); }\n885: const spanMs = new Date(s.day_end) - new Date(s.day_start);\n891: const left = (new Date(seg.start) - new Date(s.day_start)) / spanMs * 100;\n892: const width = (new Date(seg.end) - new Date(seg.start)) / spanMs * 100;\n899: const left = (new Date(brk.start) - new Date(s.day_start)) / spanMs * 100;\n900: const width = (new Date(brk.end) - new Date(brk.start)) / spanMs * 100;\n[rerun: b4]","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \"SELECT timestamp FROM frames ORDER BY timestamp DESC LIMIT 3; SELECT timestamp FROM frames ORDER BY timestamp ASC LIMIT 3;\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
8985066539768614117
|
-8840388707379145087
|
idle
|
accessibility
|
NULL
|
Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧ Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧G)
Run and Debug (⇧⌘D)
Remote Explorer
Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update
2
Claude Code
Containers
EXPLORER
EXPLORER
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
SCREENPIPE [SSH: [IP_ADDRESS]]
#recycle
app
__pycache__
consumers
static
.env
cli.py
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
data
pipes
db.sqlite
db.sqlite-shm
db.sqlite-wal
Outline Section
OUTLINE
OUTLINE
Timeline Section
TIMELINE
TIMELINE
pipe.md, Editor Group 1
Untitled-2, Editor Group 1
docker-compose.yml, preview, Editor Group 1
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
Getting started with Cla…, Editor Group 2
Problems (⇧⌘M)
PROBLEMS
Output (⇧⌘U)
OUTPUT
Debug Console (⇧⌘Y)
DEBUG CONSOLE
Terminal (⌃`)
TERMINAL
Ports
PORTS
remote SSH: [IP_ADDRESS]
SSH: [IP_ADDRESS]
No Problems
0
0
No Ports Forwarded
0
Notifications
Sign In
Sign In
Screen Reader Optimized
Info: Setting up SSH Host [IP_ADDRESS]: Setting up SSH tunnel
Command Succeeded
Getting started with Claude agent SDK
Session history
New session
Message actions
how to start it
Thinking
Thinking
Let me check what's in your working directory to understand what you're referring to.
Bash
IN
ls /volume1/screenpipe
Copy code to clipboard
OUT
app
data
db.sqlite
pipes
#recycle
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes
Copy code to clipboard
OUT
cli.py
consumers
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
static
ai-habits
day-recap
meeting-summary
standup-update
time-breakdown
video-export
[rerun: b2]
Read
docker-compose.yml
docker-compose.yml
This is a Screenpipe app with a Docker Compose setup. To start it:
Copy code to clipboard
cd /volume1/screenpipe/app
docker compose up -d
This builds the image (first run) and starts the container in the background
The app will be accessible at
[URL_WITH_CREDENTIALS]
sudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d
Once running, the dashboard will be at
http://your-nas-ip:8766
http://your-nas-ip:8766
and it will query the data you already copied — the database has 6,923 frames and 5,464 OCR records ready to go.
Message actions
docker-compose.yml
docker-compose.yml
I have ugos ugreen nas. I can see the ui but it is empty. No data. Also when I open it there is defsault today, lets make default yesterday.
Thinking
Thinking
Let me check why data isn't showing and look at the frontend.
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT DATE(timestamp) as d, COUNT(*) FROM frames GROUP BY d ORDER BY d DESC LIMIT 10;"
Copy code to clipboard
OUT
2026-04-13|2643
2026-04-12|2455
2026-04-11|1302
2026-04-09|523
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app/static/
Copy code to clipboard
OUT
index.html
[rerun: b2]
Bash
IN
wc -l /volume1/screenpipe/app/static/index.html
Copy code to clipboard
OUT
1048 /volume1/screenpipe/app/static/index.html
[rerun: b3]
Bash
IN
grep -n "today\|new Date\|date\|default" /volume1/screenpipe/app/static/index.html | head -40
Copy code to clipboard
OUT
24:input[type="date"] {
71:.sess-segment:hover { opacity: 0.8; cursor: default; }
179:button:disabled { opacity: 0.4; cursor: default; }
276: <input type="date" id="datePicker" onchange="refresh()">
336: <select id="sSrc" onchange="updateSourceHint()">
356: <input type="date" id="sDate">
388: <div id="workReportOut"><div class="empty">Click Generate Report to build a structured work summary for the selected date.</div></div>
398: <option value="standup">Standup Update</option>
453:const dp = document.getElementById('datePicker');
454:dp.value = new Date().toISOString().slice(0,10);
525: // Re-render bars to update selection highlight
679: const bucket = Math.floor(new Date(r.timestamp).getTime() / (everyMin * 60000));
710:function updateSourceHint() {
721: updateSourceHint();
797: if (!rows.length) { el.innerHTML = '<div class="empty">No audio for this date.</div>'; return; }
835: try { return new Date(ts).toLocaleTimeString([],{hour:'2-digit',minute:'2-digit'}); }
885: const spanMs = new Date(s.day_end) - new Date(s.day_start);
891: const left = (new Date(seg.start) - new Date(s.day_start)) / spanMs * 100;
892: const width = (new Date(seg.end) - new Date(seg.start)) / spanMs * 100;
899: const left = (new Date(brk.start) - new Date(s.day_start)) / spanMs * 100;
900: const width = (new Date(brk.end) - new Date(brk.start)) / spanMs * 100;
[rerun: b4]
Thinking
Thinking
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT timestamp FROM frames ORDER BY timestamp DESC LIMIT 3; SELECT timestamp FROM frames ORDER BY timestamp ASC LIMIT 3;"
Copy code to clipboard...
|
NULL
|
|
7541
|
140
|
39
|
2026-04-13T16:01:17.452288+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096077452_m1.jpg...
|
Firefox
|
Screenpipe Dashboard — Personal
|
True
|
http://100.73.206.126:8766
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Close tab
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Screenpipe
Screenpipe
Activity
Search
Audio
Work Report
AI Summary
Date
12
/
04
/
2026
Calendar
TOTAL SPAN
12.6h
11:35 → 00:10
ACTIVE TIME
(WALL CLOCK)
4.6h
BREAKS
3 · 8.0h
SESSIONS — CLICK TO FILTER
S1: 11:35–11:46 (11.1m)
S2: 12:10–13:13 (63.3m)
S3: 15:09–16:37 (87.1m)
S4: 22:16–00:10 (113.9m)
Click a session segment to filter activity to that time window
S2 63m
S3 87m
S4 114m
117m
340m
11:35
13:41
15:46
17:52
19:58
22:04
00:10
Filtered:
📱 Boosteroid
×
FRAMES
2455
APPS
10
UI EVENTS
3628
AUDIO
0
ACTIVE PERIOD
(TIMES IN LOCAL TIMEZONE)
11:35 → 00:10
TIME PER APP
— CLICK TO FILTER ALL PANELS BY APP
Boosteroid
43.4m
Firefox
9.7m
iTerm2
5.7m
Claude
5.1m
System Settings
1.9m
Alfred
0.4m
Control Centre
0.2m
Code
0.1m
Activity Monitor
0.1m
Preview
0m
Websites
Windows
UI Events
No browser URLs...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Inbox - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Shameless • HBO Max","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Shameless • HBO Max","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Mute tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Machines - Tailscale","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Machines - Tailscale","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe Dashboard","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Screenpipe Dashboard","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Pazaruvaj.com — Знак, че е време за най-добрите оферти","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pazaruvaj.com — Знак, че е време за най-добрите оферти","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"google maps timeline export - Google Search","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"google maps timeline export - Google Search","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Screenpipe","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Screenpipe","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Activity","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Search","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Audio","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Work Report","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"AI Summary","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Date","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"12","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"04","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2026","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Calendar","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"TOTAL SPAN","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"12.6h","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:35 → 00:10","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ACTIVE TIME","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(WALL CLOCK)","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"4.6h","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"BREAKS","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3 · 8.0h","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"SESSIONS — CLICK TO FILTER","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"S1: 11:35–11:46 (11.1m)","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"S2: 12:10–13:13 (63.3m)","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"S3: 15:09–16:37 (87.1m)","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"S4: 22:16–00:10 (113.9m)","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Click a session segment to filter activity to that time window","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"S2 63m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"S3 87m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"S4 114m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"117m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"340m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:35","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"13:41","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"15:46","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"17:52","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"19:58","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"22:04","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"00:10","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Filtered:","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"📱 Boosteroid","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"×","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"FRAMES","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2455","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"APPS","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"10","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"UI EVENTS","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3628","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"AUDIO","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ACTIVE PERIOD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(TIMES IN LOCAL TIMEZONE)","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:35 → 00:10","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"TIME PER APP","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"— CLICK TO FILTER ALL PANELS BY APP","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Boosteroid","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"43.4m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"9.7m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"5.7m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Claude","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"5.1m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"System Settings","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1.9m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Alfred","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.4m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Control Centre","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.2m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Code","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.1m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Activity Monitor","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.1m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Preview","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Websites","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Windows","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"UI Events","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"No browser URLs","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
-2775780870821593204
|
8190121370021214680
|
click
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Close tab
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Screenpipe
Screenpipe
Activity
Search
Audio
Work Report
AI Summary
Date
12
/
04
/
2026
Calendar
TOTAL SPAN
12.6h
11:35 → 00:10
ACTIVE TIME
(WALL CLOCK)
4.6h
BREAKS
3 · 8.0h
SESSIONS — CLICK TO FILTER
S1: 11:35–11:46 (11.1m)
S2: 12:10–13:13 (63.3m)
S3: 15:09–16:37 (87.1m)
S4: 22:16–00:10 (113.9m)
Click a session segment to filter activity to that time window
S2 63m
S3 87m
S4 114m
117m
340m
11:35
13:41
15:46
17:52
19:58
22:04
00:10
Filtered:
📱 Boosteroid
×
FRAMES
2455
APPS
10
UI EVENTS
3628
AUDIO
0
ACTIVE PERIOD
(TIMES IN LOCAL TIMEZONE)
11:35 → 00:10
TIME PER APP
— CLICK TO FILTER ALL PANELS BY APP
Boosteroid
43.4m
Firefox
9.7m
iTerm2
5.7m
Claude
5.1m
System Settings
1.9m
Alfred
0.4m
Control Centre
0.2m
Code
0.1m
Activity Monitor
0.1m
Preview
0m
Websites
Windows
UI Events
No browser URLs...
|
7540
|
|
7543
|
140
|
41
|
2026-04-13T16:01:19.812174+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096079812_m1.jpg...
|
Firefox
|
Screenpipe Dashboard — Personal
|
True
|
http://100.73.206.126:8766
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Close tab
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Screenpipe
Screenpipe
Activity
Search
Audio
Work Report
AI Summary
Date
12
/
04
/
2026
Calendar
TOTAL SPAN
12.6h
11:35 → 00:10
ACTIVE TIME
(WALL CLOCK)
4.6h
BREAKS
3 · 8.0h
SESSIONS — CLICK TO FILTER
S1: 11:35–11:46 (11.1m)
S2: 12:10–13:13 (63.3m)
S3: 15:09–16:37 (87.1m)
S4: 22:16–00:10 (113.9m)
Click a session segment to filter activity to that time window
S2 63m
S3 87m
S4 114m
117m
340m
11:35
13:41
15:46
17:52
19:58
22:04
00:10
Filtered:
📱 Firefox
×
FRAMES
2455
APPS
10
UI EVENTS
3628
AUDIO
0
ACTIVE PERIOD
(TIMES IN LOCAL TIMEZONE)
11:35 → 00:10
TIME PER APP
— CLICK TO FILTER ALL PANELS BY APP
Boosteroid
43.4m
Firefox
9.7m
iTerm2
5.7m
Claude
5.1m
System Settings
1.9m
Alfred
0.4m
Control Centre
0.2m
Code
0.1m
Activity Monitor
0.1m
Preview
0m
Websites
Windows
UI Events
screenpi.pe/onboarding
0.6m
dennikn.sk
0.3m
screenpi.pe/ideas
0.2m
nas.lakylak.xyz/desktop/#/
0.2m
screenpi.pe/why
0.2m
www.reddit.com/r/software/comments/1fjfwg0/comment/lnr7nqd/
0.1m
jiminny.atlassian.net/jira/software/c/projects/JY/boards/37?selectedIssue=JY-18909
0.1m
app.dev.jiminny.com
0.1m
addons.mozilla.org/en-US/firefox/?utm_source=firefox-browser&utm_medium=firefox-browser&utm_content=find-more-link-bottom
0.1m
screenpi.pe/resources
0.1m
screenpi.pe
0.1m
mail.google.com/mail/u/0/#inbox
0.1m
jiminny.atlassian.net/jira/software/c/projects/JY/boards/37?selectedIssue=JY-20543
0.1m
http://localhost:3030
0.1m
addons.mozilla.org/en-US/firefox/addon/proxy-switcher-and-manager/?utm_source=addons.mozilla.org&utm_medium=referral&utm_content=search
0.1m
www.rtings.com/projector/reviews/dangbei/atom-laser-projector
0m
www.reddit.com/r/software/comments/1fjfwg0/screenpipe_open_source_247_screen_audio_capture/
0m
jiminny.atlassian.net/jira/software/c/projects/JY/boards/37
0m
dennikn.sk/tema/iran/
0m
dennikn.sk/5268962/sledujte-madarske-volby-ako-experti-toto-su-najdolezitejsie-veci-ktore-treba-vediet/
0m
addons.mozilla.org/en-US/firefox/search/?q=profile
0m...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Inbox - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Shameless • HBO Max","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Shameless • HBO Max","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Mute tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Machines - Tailscale","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Machines - Tailscale","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe Dashboard","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Screenpipe Dashboard","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Pazaruvaj.com — Знак, че е време за най-добрите оферти","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pazaruvaj.com — Знак, че е време за най-добрите оферти","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"google maps timeline export - Google Search","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"google maps timeline export - Google Search","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Screenpipe","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Screenpipe","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Activity","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Search","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Audio","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Work Report","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"AI Summary","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Date","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"12","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"04","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2026","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Calendar","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"TOTAL SPAN","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"12.6h","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:35 → 00:10","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ACTIVE TIME","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(WALL CLOCK)","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"4.6h","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"BREAKS","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3 · 8.0h","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"SESSIONS — CLICK TO FILTER","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"S1: 11:35–11:46 (11.1m)","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"S2: 12:10–13:13 (63.3m)","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"S3: 15:09–16:37 (87.1m)","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"S4: 22:16–00:10 (113.9m)","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Click a session segment to filter activity to that time window","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"S2 63m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"S3 87m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"S4 114m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"117m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"340m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:35","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"13:41","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"15:46","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"17:52","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"19:58","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"22:04","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"00:10","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Filtered:","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"📱 Firefox","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"×","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"FRAMES","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2455","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"APPS","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"10","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"UI EVENTS","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3628","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"AUDIO","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ACTIVE PERIOD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(TIMES IN LOCAL TIMEZONE)","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:35 → 00:10","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"TIME PER APP","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"— CLICK TO FILTER ALL PANELS BY APP","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Boosteroid","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"43.4m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"9.7m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"5.7m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Claude","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"5.1m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"System Settings","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1.9m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Alfred","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.4m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Control Centre","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.2m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Code","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.1m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Activity Monitor","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.1m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Preview","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Websites","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Windows","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"UI Events","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"screenpi.pe/onboarding","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.6m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"dennikn.sk","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.3m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"screenpi.pe/ideas","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.2m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"nas.lakylak.xyz/desktop/#/","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.2m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"screenpi.pe/why","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.2m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"www.reddit.com/r/software/comments/1fjfwg0/comment/lnr7nqd/","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.1m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"jiminny.atlassian.net/jira/software/c/projects/JY/boards/37?selectedIssue=JY-18909","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.1m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"app.dev.jiminny.com","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.1m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"addons.mozilla.org/en-US/firefox/?utm_source=firefox-browser&utm_medium=firefox-browser&utm_content=find-more-link-bottom","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.1m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"screenpi.pe/resources","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.1m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"screenpi.pe","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.1m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"mail.google.com/mail/u/0/#inbox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.1m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"jiminny.atlassian.net/jira/software/c/projects/JY/boards/37?selectedIssue=JY-20543","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.1m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://localhost:3030","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.1m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"addons.mozilla.org/en-US/firefox/addon/proxy-switcher-and-manager/?utm_source=addons.mozilla.org&utm_medium=referral&utm_content=search","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.1m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"www.rtings.com/projector/reviews/dangbei/atom-laser-projector","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"www.reddit.com/r/software/comments/1fjfwg0/screenpipe_open_source_247_screen_audio_capture/","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"jiminny.atlassian.net/jira/software/c/projects/JY/boards/37","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"dennikn.sk/tema/iran/","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"dennikn.sk/5268962/sledujte-madarske-volby-ako-experti-toto-su-najdolezitejsie-veci-ktore-treba-vediet/","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"addons.mozilla.org/en-US/firefox/search/?q=profile","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
7066729612755168096
|
8694592698007632328
|
click
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Close tab
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Screenpipe
Screenpipe
Activity
Search
Audio
Work Report
AI Summary
Date
12
/
04
/
2026
Calendar
TOTAL SPAN
12.6h
11:35 → 00:10
ACTIVE TIME
(WALL CLOCK)
4.6h
BREAKS
3 · 8.0h
SESSIONS — CLICK TO FILTER
S1: 11:35–11:46 (11.1m)
S2: 12:10–13:13 (63.3m)
S3: 15:09–16:37 (87.1m)
S4: 22:16–00:10 (113.9m)
Click a session segment to filter activity to that time window
S2 63m
S3 87m
S4 114m
117m
340m
11:35
13:41
15:46
17:52
19:58
22:04
00:10
Filtered:
📱 Firefox
×
FRAMES
2455
APPS
10
UI EVENTS
3628
AUDIO
0
ACTIVE PERIOD
(TIMES IN LOCAL TIMEZONE)
11:35 → 00:10
TIME PER APP
— CLICK TO FILTER ALL PANELS BY APP
Boosteroid
43.4m
Firefox
9.7m
iTerm2
5.7m
Claude
5.1m
System Settings
1.9m
Alfred
0.4m
Control Centre
0.2m
Code
0.1m
Activity Monitor
0.1m
Preview
0m
Websites
Windows
UI Events
screenpi.pe/onboarding
0.6m
dennikn.sk
0.3m
screenpi.pe/ideas
0.2m
nas.lakylak.xyz/desktop/#/
0.2m
screenpi.pe/why
0.2m
www.reddit.com/r/software/comments/1fjfwg0/comment/lnr7nqd/
0.1m
jiminny.atlassian.net/jira/software/c/projects/JY/boards/37?selectedIssue=JY-18909
0.1m
app.dev.jiminny.com
0.1m
addons.mozilla.org/en-US/firefox/?utm_source=firefox-browser&utm_medium=firefox-browser&utm_content=find-more-link-bottom
0.1m
screenpi.pe/resources
0.1m
screenpi.pe
0.1m
mail.google.com/mail/u/0/#inbox
0.1m
jiminny.atlassian.net/jira/software/c/projects/JY/boards/37?selectedIssue=JY-20543
0.1m
http://localhost:3030
0.1m
addons.mozilla.org/en-US/firefox/addon/proxy-switcher-and-manager/?utm_source=addons.mozilla.org&utm_medium=referral&utm_content=search
0.1m
www.rtings.com/projector/reviews/dangbei/atom-laser-projector
0m
www.reddit.com/r/software/comments/1fjfwg0/screenpipe_open_source_247_screen_audio_capture/
0m
jiminny.atlassian.net/jira/software/c/projects/JY/boards/37
0m
dennikn.sk/tema/iran/
0m
dennikn.sk/5268962/sledujte-madarske-volby-ako-experti-toto-su-najdolezitejsie-veci-ktore-treba-vediet/
0m
addons.mozilla.org/en-US/firefox/search/?q=profile
0m...
|
7542
|
|
7545
|
140
|
43
|
2026-04-13T16:01:26.653164+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096086653_m1.jpg...
|
Firefox
|
Screenpipe Dashboard — Personal
|
True
|
http://100.73.206.126:8766
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Close tab
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Screenpipe
Screenpipe
Activity
Search
Audio
Work Report
AI Summary
Date
12
/
04
/
2026
Calendar
TOTAL SPAN
12.6h
11:35 → 00:10
ACTIVE TIME
(WALL CLOCK)
4.6h
BREAKS
3 · 8.0h
SESSIONS — CLICK TO FILTER
S1: 11:35–11:46 (11.1m)
S2: 12:10–13:13 (63.3m)
S3: 15:09–16:37 (87.1m)
S4: 22:16–00:10 (113.9m)
Click a session segment to filter activity to that time window
S2 63m
S3 87m
S4 114m
117m
340m
11:35
13:41
15:46
17:52
19:58
22:04
00:10
Filtered:
📱 Firefox
×
FRAMES
2455
APPS
10
UI EVENTS
3628
AUDIO
0
ACTIVE PERIOD
(TIMES IN LOCAL TIMEZONE)
11:35 → 00:10
TIME PER APP
— CLICK TO FILTER ALL PANELS BY APP
Boosteroid
43.4m
Firefox
9.7m
iTerm2
5.7m
Claude
5.1m
System Settings
1.9m
Alfred
0.4m
Control Centre
0.2m
Code
0.1m
Activity Monitor
0.1m
Preview
0m
Websites
Windows
UI Events
screenpi.pe/onboarding
0.6m
dennikn.sk
0.3m
screenpi.pe/ideas
0.2m
nas.lakylak.xyz/desktop/#/
0.2m
screenpi.pe/why
0.2m
www.reddit.com/r/software/comments/1fjfwg0/comment/lnr7nqd/
0.1m
jiminny.atlassian.net/jira/software/c/projects/JY/boards/37?selectedIssue=JY-18909
0.1m
app.dev.jiminny.com
0.1m
addons.mozilla.org/en-US/firefox/?utm_source=firefox-browser&utm_medium=firefox-browser&utm_content=find-more-link-bottom
0.1m
screenpi.pe/resources
0.1m
screenpi.pe
0.1m
mail.google.com/mail/u/0/#inbox
0.1m
jiminny.atlassian.net/jira/software/c/projects/JY/boards/37?selectedIssue=JY-20543
0.1m
http://localhost:3030
0.1m
addons.mozilla.org/en-US/firefox/addon/proxy-switcher-and-manager/?utm_source=addons.mozilla.org&utm_medium=referral&utm_content=search
0.1m
www.rtings.com/projector/reviews/dangbei/atom-laser-projector
0m
www.reddit.com/r/software/comments/1fjfwg0/screenpipe_open_source_247_screen_audio_capture/
0m
jiminny.atlassian.net/jira/software/c/projects/JY/boards/37
0m
dennikn.sk/tema/iran/
0m
dennikn.sk/5268962/sledujte-madarske-volby-ako-experti-toto-su-najdolezitejsie-veci-ktore-treba-vediet/
0m
addons.mozilla.org/en-US/firefox/search/?q=profile
0m...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Inbox - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Shameless • HBO Max","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Shameless • HBO Max","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Mute tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Machines - Tailscale","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Machines - Tailscale","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe Dashboard","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Screenpipe Dashboard","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Pazaruvaj.com — Знак, че е време за най-добрите оферти","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pazaruvaj.com — Знак, че е време за най-добрите оферти","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"google maps timeline export - Google Search","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"google maps timeline export - Google Search","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Screenpipe","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Screenpipe","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Activity","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Search","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Audio","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Work Report","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"AI Summary","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Date","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"12","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"04","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2026","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Calendar","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"TOTAL SPAN","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"12.6h","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:35 → 00:10","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ACTIVE TIME","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(WALL CLOCK)","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"4.6h","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"BREAKS","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3 · 8.0h","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"SESSIONS — CLICK TO FILTER","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"S1: 11:35–11:46 (11.1m)","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"S2: 12:10–13:13 (63.3m)","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"S3: 15:09–16:37 (87.1m)","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"S4: 22:16–00:10 (113.9m)","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Click a session segment to filter activity to that time window","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"S2 63m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"S3 87m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"S4 114m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"117m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"340m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:35","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"13:41","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"15:46","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"17:52","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"19:58","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"22:04","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"00:10","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Filtered:","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"📱 Firefox","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"×","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"FRAMES","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2455","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"APPS","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"10","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"UI EVENTS","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3628","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"AUDIO","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ACTIVE PERIOD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(TIMES IN LOCAL TIMEZONE)","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:35 → 00:10","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"TIME PER APP","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"— CLICK TO FILTER ALL PANELS BY APP","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Boosteroid","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"43.4m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"9.7m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"5.7m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Claude","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"5.1m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"System Settings","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1.9m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Alfred","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.4m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Control Centre","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.2m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Code","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.1m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Activity Monitor","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.1m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Preview","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Websites","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Windows","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"UI Events","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"screenpi.pe/onboarding","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.6m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"dennikn.sk","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.3m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"screenpi.pe/ideas","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.2m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"nas.lakylak.xyz/desktop/#/","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.2m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"screenpi.pe/why","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.2m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"www.reddit.com/r/software/comments/1fjfwg0/comment/lnr7nqd/","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.1m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"jiminny.atlassian.net/jira/software/c/projects/JY/boards/37?selectedIssue=JY-18909","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.1m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"app.dev.jiminny.com","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.1m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"addons.mozilla.org/en-US/firefox/?utm_source=firefox-browser&utm_medium=firefox-browser&utm_content=find-more-link-bottom","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.1m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"screenpi.pe/resources","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.1m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"screenpi.pe","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.1m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"mail.google.com/mail/u/0/#inbox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.1m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"jiminny.atlassian.net/jira/software/c/projects/JY/boards/37?selectedIssue=JY-20543","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.1m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://localhost:3030","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.1m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"addons.mozilla.org/en-US/firefox/addon/proxy-switcher-and-manager/?utm_source=addons.mozilla.org&utm_medium=referral&utm_content=search","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.1m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"www.rtings.com/projector/reviews/dangbei/atom-laser-projector","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"www.reddit.com/r/software/comments/1fjfwg0/screenpipe_open_source_247_screen_audio_capture/","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"jiminny.atlassian.net/jira/software/c/projects/JY/boards/37","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"dennikn.sk/tema/iran/","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"dennikn.sk/5268962/sledujte-madarske-volby-ako-experti-toto-su-najdolezitejsie-veci-ktore-treba-vediet/","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"addons.mozilla.org/en-US/firefox/search/?q=profile","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
7066729612755168096
|
8694592698007632328
|
click
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Close tab
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Screenpipe
Screenpipe
Activity
Search
Audio
Work Report
AI Summary
Date
12
/
04
/
2026
Calendar
TOTAL SPAN
12.6h
11:35 → 00:10
ACTIVE TIME
(WALL CLOCK)
4.6h
BREAKS
3 · 8.0h
SESSIONS — CLICK TO FILTER
S1: 11:35–11:46 (11.1m)
S2: 12:10–13:13 (63.3m)
S3: 15:09–16:37 (87.1m)
S4: 22:16–00:10 (113.9m)
Click a session segment to filter activity to that time window
S2 63m
S3 87m
S4 114m
117m
340m
11:35
13:41
15:46
17:52
19:58
22:04
00:10
Filtered:
📱 Firefox
×
FRAMES
2455
APPS
10
UI EVENTS
3628
AUDIO
0
ACTIVE PERIOD
(TIMES IN LOCAL TIMEZONE)
11:35 → 00:10
TIME PER APP
— CLICK TO FILTER ALL PANELS BY APP
Boosteroid
43.4m
Firefox
9.7m
iTerm2
5.7m
Claude
5.1m
System Settings
1.9m
Alfred
0.4m
Control Centre
0.2m
Code
0.1m
Activity Monitor
0.1m
Preview
0m
Websites
Windows
UI Events
screenpi.pe/onboarding
0.6m
dennikn.sk
0.3m
screenpi.pe/ideas
0.2m
nas.lakylak.xyz/desktop/#/
0.2m
screenpi.pe/why
0.2m
www.reddit.com/r/software/comments/1fjfwg0/comment/lnr7nqd/
0.1m
jiminny.atlassian.net/jira/software/c/projects/JY/boards/37?selectedIssue=JY-18909
0.1m
app.dev.jiminny.com
0.1m
addons.mozilla.org/en-US/firefox/?utm_source=firefox-browser&utm_medium=firefox-browser&utm_content=find-more-link-bottom
0.1m
screenpi.pe/resources
0.1m
screenpi.pe
0.1m
mail.google.com/mail/u/0/#inbox
0.1m
jiminny.atlassian.net/jira/software/c/projects/JY/boards/37?selectedIssue=JY-20543
0.1m
http://localhost:3030
0.1m
addons.mozilla.org/en-US/firefox/addon/proxy-switcher-and-manager/?utm_source=addons.mozilla.org&utm_medium=referral&utm_content=search
0.1m
www.rtings.com/projector/reviews/dangbei/atom-laser-projector
0m
www.reddit.com/r/software/comments/1fjfwg0/screenpipe_open_source_247_screen_audio_capture/
0m
jiminny.atlassian.net/jira/software/c/projects/JY/boards/37
0m
dennikn.sk/tema/iran/
0m
dennikn.sk/5268962/sledujte-madarske-volby-ako-experti-toto-su-najdolezitejsie-veci-ktore-treba-vediet/
0m
addons.mozilla.org/en-US/firefox/search/?q=profile
0m...
|
7544
|
|
7547
|
140
|
45
|
2026-04-13T16:01:28.767628+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096088767_m1.jpg...
|
Firefox
|
Screenpipe Dashboard — Personal
|
True
|
http://100.73.206.126:8766
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Close tab
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Screenpipe
Screenpipe
Activity
Search
Audio
Work Report
AI Summary
Date
12
/
04
/
2026
Calendar
Search across all your screen activity…
Search
Source
App
any app
Date
dd
/
mm
/
yyyy
Calendar
(blank = all dates)
From
--
:
--
To
--
:
--
FTS tip: single words work best · "exact phrase" · term1 OR term2
Enter a query and press Search (or Enter)....
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Inbox - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Shameless • HBO Max","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Shameless • HBO Max","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Mute tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Machines - Tailscale","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Machines - Tailscale","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe Dashboard","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Screenpipe Dashboard","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Pazaruvaj.com — Знак, че е време за най-добрите оферти","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pazaruvaj.com — Знак, че е време за най-добрите оферти","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"google maps timeline export - Google Search","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"google maps timeline export - Google Search","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Screenpipe","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Screenpipe","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Activity","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Search","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Audio","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Work Report","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"AI Summary","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Date","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"12","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"04","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2026","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Calendar","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Search across all your screen activity…","depth":8,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Search","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Source","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"App","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXComboBox","text":"any app","depth":8,"help_text":"","role_description":"combo box","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Date","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"dd","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"mm","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"yyyy","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Calendar","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"(blank = all dates)","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"From","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":":","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"To","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":":","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"FTS tip: single words work best · \"exact phrase\" · term1 OR term2","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Enter a query and press Search (or Enter).","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
8845567138521432327
|
1263372713722333434
|
click
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Close tab
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Screenpipe
Screenpipe
Activity
Search
Audio
Work Report
AI Summary
Date
12
/
04
/
2026
Calendar
Search across all your screen activity…
Search
Source
App
any app
Date
dd
/
mm
/
yyyy
Calendar
(blank = all dates)
From
--
:
--
To
--
:
--
FTS tip: single words work best · "exact phrase" · term1 OR term2
Enter a query and press Search (or Enter)....
|
7546
|
|
7550
|
140
|
48
|
2026-04-13T16:01:32.134294+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096092134_m1.jpg...
|
Firefox
|
Screenpipe Dashboard — Personal
|
True
|
http://100.73.206.126:8766
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Close tab
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Screenpipe
Screenpipe
Activity
Search
Audio
Work Report
AI Summary
Date
12
/
04
/
2026
Calendar
Search across all your screen activity…
Search
Source
App
any app
Date
dd
/
mm
/
yyyy
Calendar
(blank = all dates)
From
--
:
--
To
--
:
--
FTS tip: single words work best · "exact phrase" · term1 OR term2
Enter a query and press Search (or Enter)....
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Inbox - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Shameless • HBO Max","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Shameless • HBO Max","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Mute tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Machines - Tailscale","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Machines - Tailscale","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe Dashboard","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Screenpipe Dashboard","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Pazaruvaj.com — Знак, че е време за най-добрите оферти","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pazaruvaj.com — Знак, че е време за най-добрите оферти","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"google maps timeline export - Google Search","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"google maps timeline export - Google Search","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Screenpipe","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Screenpipe","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Activity","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Search","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Audio","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Work Report","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"AI Summary","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Date","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"12","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"04","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2026","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Calendar","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Search across all your screen activity…","depth":8,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Search","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Source","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"App","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXComboBox","text":"any app","depth":8,"help_text":"","role_description":"combo box","subrole":"AXUnknown","is_enabled":true,"is_focused":true,"is_selected":false},{"role":"AXStaticText","text":"Date","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"dd","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"mm","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"yyyy","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Calendar","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"(blank = all dates)","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"From","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":":","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"To","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":":","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"FTS tip: single words work best · \"exact phrase\" · term1 OR term2","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Enter a query and press Search (or Enter).","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
8845567138521432327
|
1263372713722333434
|
click
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Close tab
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Screenpipe
Screenpipe
Activity
Search
Audio
Work Report
AI Summary
Date
12
/
04
/
2026
Calendar
Search across all your screen activity…
Search
Source
App
any app
Date
dd
/
mm
/
yyyy
Calendar
(blank = all dates)
From
--
:
--
To
--
:
--
FTS tip: single words work best · "exact phrase" · term1 OR term2
Enter a query and press Search (or Enter)....
|
NULL
|
|
7551
|
140
|
49
|
2026-04-13T16:01:47.298643+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096107298_m1.jpg...
|
Firefox
|
Screenpipe Dashboard — Personal
|
True
|
http://100.73.206.126:8766
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Close tab
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Screenpipe
Screenpipe
Activity
Search
Audio
Work Report
AI Summary
Date
12
/
04
/
2026
Calendar
Red plus
Search
Source
App
any app
Date
dd
/
mm
/
yyyy
Calendar
(blank = all dates)
From
--
:
--
To
--
:
--
FTS tip: single words work best · "exact phrase" · term1 OR term2
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:2000 GB3000 Gb4000 Gb6000 GB8000 Gb6твwestem...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gbb000 GbSOO0 GHОтвwestemn...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...
18:29 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:29 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:28 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:25 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:23 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:23 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:18 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:18 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:17 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
15:53 ·
QuickTime Player
/ compact_monitor_1_1775908431491.mp4
...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: "WD
Red
Plus
6TB", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: "
Red
Plus
6TB", limit...
15:53 ·
QuickTime Player
/ compact_monitor_1_1775908431491.mp4
...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: "WD
Red
Plus
6TB", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: "
Red
Plus
6TB", limit...
15:53 ·
QuickTime Player
/ compact_monitor_1_1775908431491.mp4
...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: "WD
Red
Plus
6TB", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: "
Red
Plus
6TB", limit...
21:25 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:25 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:25 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:24 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:21 ·
iTerm2
/ ⠐ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20 ·
iTerm2
/ ✳ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20 ·
iTerm2
/ ⠂ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20 ·
iTerm2
/ ⠐ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20 ·
iTerm2
/ ✳ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20
iTerm2Shell|Edit|ViewSessionScriptsProfilesWindowHelp100%
8Thu 9 Apr 21:20:25DOCKERDEV (-zsh)APP (-zsh)* Research Western Digital
Red
Plus
pricing* Research Western Digital
Red
...X4-zsh• screenpipe - Search Content (MCP)(q: "Western...
21:20 ·
iTerm2
click
AXDockItem
→
Slack
21:20 ·
iTerm2
click
21:20 ·
iTerm2
/ ⠐ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20 ·
iTerm2
/ ⠂ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:19 ·
iTerm2
/ ⠐ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:19 ·
iTerm2
/ ✳ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:19 ·
iTerm2
/ ✳ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:19 ·
iTerm2
/ ⠐ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:19 ·
iTerm2
/ ⠂ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:19 ·
iTerm2
/ ⠐ Research Western Digital Red Plus pricing
...500) ⎿ Interrupted · What should Claude do instead?
red
plus
⏺ The screenpipe MCP server has disconnected, so I can't search your screen history...
21:19 ·
iTerm2
/ ⠂ Research Western Digital Red Plus pricing
...500) ⎿ Interrupted · What should Claude do instead?
red
plus
⏺ The screenpipe MCP server has disconnected, so I can't search your screen history...
21:18
clipboard
What was the cheapest Western Digital
Red
Plus
?
21:18 ·
iTerm2
key
21:18 ·
iTerm2
key
21:18 ·
iTerm2
key
21:18 ·
iTerm2
key
21:18 ·
iTerm2
key...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Inbox - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Shameless • HBO Max","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Shameless • HBO Max","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Mute tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Machines - Tailscale","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Machines - Tailscale","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe Dashboard","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Screenpipe Dashboard","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Pazaruvaj.com — Знак, че е време за най-добрите оферти","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pazaruvaj.com — Знак, че е време за най-добрите оферти","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"google maps timeline export - Google Search","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"google maps timeline export - Google Search","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Screenpipe","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Screenpipe","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Activity","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Search","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Audio","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Work Report","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"AI Summary","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Date","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"12","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"04","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2026","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Calendar","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Red plus","depth":8,"value":"Red plus","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Search","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Source","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"App","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXComboBox","text":"any app","depth":8,"help_text":"","role_description":"combo box","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Date","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"dd","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"mm","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"yyyy","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Calendar","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"(blank = all dates)","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"From","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":":","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"To","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":":","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"FTS tip: single words work best · \"exact phrase\" · term1 OR term2","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:39","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:2000 GB3000 Gb4000 Gb6000 GB8000 Gb6твwestem...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:39","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gbb000 GbSOO0 GHОтвwestemn...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:39","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:39","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:29 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...21:19 · iTerm2 / ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...was the cheapest Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...20) ⏺ screenpipe...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:29 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...21:19 · iTerm2 / ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...was the cheapest Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...20) ⏺ screenpipe...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:28 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:26 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:26 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:26 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:25 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:23 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.23055555,"top":0.0,"width":0.016666668,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"bounds":{"left":0.24791667,"top":0.0,"width":0.007638889,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:23 ·","depth":10,"bounds":{"left":0.16388889,"top":0.0,"width":0.02638889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"bounds":{"left":0.19027779,"top":0.0,"width":0.027083334,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"bounds":{"left":0.21736111,"top":0.0,"width":0.13194445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"bounds":{"left":0.16388889,"top":0.0,"width":0.090277776,"height":0.014444444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"bounds":{"left":0.16388889,"top":0.0,"width":0.20069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.36527777,"top":0.0,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.38541666,"top":0.0,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"bounds":{"left":0.40347221,"top":0.0,"width":0.16319445,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5673611,"top":0.0,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.5875,"top":0.0,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"bounds":{"left":0.60625,"top":0.0,"width":0.15069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.7576389,"top":0.0,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.7777778,"top":0.0,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"bounds":{"left":0.16388889,"top":0.0,"width":0.82708335,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.23055555,"top":0.011111111,"width":0.016666668,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"bounds":{"left":0.24791667,"top":0.011111111,"width":0.007638889,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:19 ·","depth":10,"bounds":{"left":0.16388889,"top":0.055555556,"width":0.025694445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"bounds":{"left":0.18958333,"top":0.055555556,"width":0.02638889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"bounds":{"left":0.21597221,"top":0.055555556,"width":0.13263889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"bounds":{"left":0.16388889,"top":0.07444444,"width":0.090277776,"height":0.014444444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"bounds":{"left":0.16388889,"top":0.096666664,"width":0.20069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.36527777,"top":0.096666664,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.38541666,"top":0.096666664,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"bounds":{"left":0.40347221,"top":0.096666664,"width":0.16319445,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5673611,"top":0.096666664,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.5875,"top":0.096666664,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"bounds":{"left":0.60625,"top":0.096666664,"width":0.15069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.7576389,"top":0.096666664,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.7777778,"top":0.096666664,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"bounds":{"left":0.16388889,"top":0.096666664,"width":0.82708335,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.23055555,"top":0.11888889,"width":0.016666668,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"bounds":{"left":0.24791667,"top":0.11888889,"width":0.007638889,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:19 ·","depth":10,"bounds":{"left":0.16388889,"top":0.16333333,"width":0.025694445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"bounds":{"left":0.18958333,"top":0.16333333,"width":0.02638889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"bounds":{"left":0.21597221,"top":0.16333333,"width":0.13263889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"bounds":{"left":0.16388889,"top":0.18222222,"width":0.090277776,"height":0.014444444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"bounds":{"left":0.16388889,"top":0.20444444,"width":0.20069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.36527777,"top":0.20444444,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.38541666,"top":0.20444444,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"bounds":{"left":0.40347221,"top":0.20444444,"width":0.16319445,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5673611,"top":0.20444444,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.5875,"top":0.20444444,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"bounds":{"left":0.60625,"top":0.20444444,"width":0.15069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.7576389,"top":0.20444444,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.7777778,"top":0.20444444,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"bounds":{"left":0.16388889,"top":0.20444444,"width":0.82708335,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.23055555,"top":0.22666667,"width":0.016666668,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"bounds":{"left":0.24791667,"top":0.22666667,"width":0.007638889,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:19 ·","depth":10,"bounds":{"left":0.16388889,"top":0.2711111,"width":0.025694445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"bounds":{"left":0.18958333,"top":0.2711111,"width":0.02638889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"bounds":{"left":0.21597221,"top":0.2711111,"width":0.13263889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"bounds":{"left":0.16388889,"top":0.29,"width":0.090277776,"height":0.014444444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...21:19 · iTerm2 / ⠂ Research Western Digital","depth":10,"bounds":{"left":0.16388889,"top":0.3122222,"width":0.19027779,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.3548611,"top":0.3122222,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.375,"top":0.3122222,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...was the cheapest Western Digital","depth":10,"bounds":{"left":0.39375,"top":0.3122222,"width":0.18402778,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5784722,"top":0.3122222,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.5986111,"top":0.3122222,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital","depth":10,"bounds":{"left":0.6166667,"top":0.3122222,"width":0.26875,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.88611114,"top":0.3122222,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.90625,"top":0.3122222,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...20) ⏺ screenpipe...","depth":10,"bounds":{"left":0.16388889,"top":0.3122222,"width":0.825,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:18 ·","depth":10,"bounds":{"left":0.16388889,"top":0.37888888,"width":0.025694445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"bounds":{"left":0.18958333,"top":0.37888888,"width":0.027083334,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"bounds":{"left":0.21666667,"top":0.37888888,"width":0.13194445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"bounds":{"left":0.16388889,"top":0.39777777,"width":0.090277776,"height":0.014444444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"bounds":{"left":0.16388889,"top":0.42,"width":0.20069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.36527777,"top":0.42,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.38541666,"top":0.42,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"bounds":{"left":0.40347221,"top":0.42,"width":0.16319445,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5673611,"top":0.42,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.5875,"top":0.42,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"bounds":{"left":0.60625,"top":0.42,"width":0.15069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.7576389,"top":0.42,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.7777778,"top":0.42,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"bounds":{"left":0.16388889,"top":0.42,"width":0.82708335,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.23055555,"top":0.4422222,"width":0.016666668,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"bounds":{"left":0.24791667,"top":0.4422222,"width":0.007638889,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:18 ·","depth":10,"bounds":{"left":0.16388889,"top":0.48666668,"width":0.025694445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"bounds":{"left":0.18958333,"top":0.48666668,"width":0.027083334,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"bounds":{"left":0.21666667,"top":0.48666668,"width":0.13194445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"bounds":{"left":0.16388889,"top":0.50555557,"width":0.090277776,"height":0.014444444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"bounds":{"left":0.16388889,"top":0.5277778,"width":0.20069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.36527777,"top":0.5277778,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.38541666,"top":0.5277778,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"bounds":{"left":0.40347221,"top":0.5277778,"width":0.16319445,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5673611,"top":0.5277778,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.5875,"top":0.5277778,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"bounds":{"left":0.60625,"top":0.5277778,"width":0.15069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.7576389,"top":0.5277778,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.7777778,"top":0.5277778,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"bounds":{"left":0.16388889,"top":0.5277778,"width":0.82708335,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.23055555,"top":0.55,"width":0.016666668,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"bounds":{"left":0.24791667,"top":0.55,"width":0.007638889,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:17 ·","depth":10,"bounds":{"left":0.16388889,"top":0.59444445,"width":0.025,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"bounds":{"left":0.18888889,"top":0.59444445,"width":0.027083334,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"bounds":{"left":0.21597221,"top":0.59444445,"width":0.13194445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"bounds":{"left":0.16388889,"top":0.61333334,"width":0.090277776,"height":0.014444444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"bounds":{"left":0.16388889,"top":0.63555557,"width":0.20069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.36527777,"top":0.63555557,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.38541666,"top":0.63555557,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"bounds":{"left":0.40347221,"top":0.63555557,"width":0.16319445,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5673611,"top":0.63555557,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.5875,"top":0.63555557,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"bounds":{"left":0.60625,"top":0.63555557,"width":0.15069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.7576389,"top":0.63555557,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.7777778,"top":0.63555557,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"bounds":{"left":0.16388889,"top":0.63555557,"width":0.82708335,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.23055555,"top":0.6577778,"width":0.016666668,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"bounds":{"left":0.24791667,"top":0.6577778,"width":0.007638889,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"15:53 ·","depth":10,"bounds":{"left":0.16388889,"top":0.7022222,"width":0.02638889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"QuickTime Player","depth":11,"bounds":{"left":0.19027779,"top":0.7022222,"width":0.068055555,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ compact_monitor_1_1775908431491.mp4","depth":10,"bounds":{"left":0.25833333,"top":0.7022222,"width":0.15833333,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: \"WD","depth":10,"bounds":{"left":0.16388889,"top":0.72555554,"width":0.42569444,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5902778,"top":0.72555554,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.61041665,"top":0.72555554,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB\", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: \"","depth":10,"bounds":{"left":0.62916666,"top":0.72555554,"width":0.2951389,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.925,"top":0.72555554,"width":0.016666668,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.9458333,"top":0.72555554,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB\", limit...","depth":10,"bounds":{"left":0.16388889,"top":0.72555554,"width":0.82569444,"height":0.03888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"15:53 ·","depth":10,"bounds":{"left":0.16388889,"top":0.7911111,"width":0.02638889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"QuickTime Player","depth":11,"bounds":{"left":0.19027779,"top":0.7911111,"width":0.068055555,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ compact_monitor_1_1775908431491.mp4","depth":10,"bounds":{"left":0.25833333,"top":0.7911111,"width":0.15833333,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: \"WD","depth":10,"bounds":{"left":0.16388889,"top":0.8144444,"width":0.42569444,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5902778,"top":0.8144444,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.61041665,"top":0.8144444,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB\", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: \"","depth":10,"bounds":{"left":0.62916666,"top":0.8144444,"width":0.2951389,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.925,"top":0.8144444,"width":0.016666668,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.9458333,"top":0.8144444,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB\", limit...","depth":10,"bounds":{"left":0.16388889,"top":0.8144444,"width":0.82569444,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"15:53 ·","depth":10,"bounds":{"left":0.16388889,"top":0.8811111,"width":0.02638889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"QuickTime Player","depth":11,"bounds":{"left":0.19027779,"top":0.8811111,"width":0.068055555,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ compact_monitor_1_1775908431491.mp4","depth":10,"bounds":{"left":0.25833333,"top":0.8811111,"width":0.15833333,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: \"WD","depth":10,"bounds":{"left":0.16388889,"top":0.90444446,"width":0.42569444,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5902778,"top":0.90444446,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.61041665,"top":0.90444446,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB\", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: \"","depth":10,"bounds":{"left":0.62916666,"top":0.90444446,"width":0.2951389,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.925,"top":0.90444446,"width":0.016666668,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.9458333,"top":0.90444446,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB\", limit...","depth":10,"bounds":{"left":0.16388889,"top":0.90444446,"width":0.82569444,"height":0.03888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:25 ·","depth":10,"bounds":{"left":0.16388889,"top":0.97,"width":0.02638889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"bounds":{"left":0.19027779,"top":0.97,"width":0.02638889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ -zsh","depth":10,"bounds":{"left":0.21666667,"top":0.97,"width":0.022916667,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"bounds":{"left":0.16388889,"top":0.99333334,"width":0.013194445,"height":0.0066666603},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.17777778,"top":0.99333334,"width":0.016666668,"height":0.0066666603},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.19583334,"top":0.99333334,"width":0.017361112,"height":0.0066666603},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.21458334,"top":0.99333334,"width":0.016666668,"height":0.0066666603},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.2326389,"top":0.99333334,"width":0.017361112,"height":0.0066666603},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"bounds":{"left":0.25069445,"top":0.99333334,"width":0.007638889,"height":0.0066666603},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:25 ·","depth":10,"bounds":{"left":0.16388889,"top":1.0,"width":0.02638889,"height":-0.03777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"bounds":{"left":0.19027779,"top":1.0,"width":0.02638889,"height":-0.03777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ -zsh","depth":10,"bounds":{"left":0.21666667,"top":1.0,"width":0.022916667,"height":-0.03777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"bounds":{"left":0.16388889,"top":1.0,"width":0.013194445,"height":-0.061111093},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.17777778,"top":1.0,"width":0.016666668,"height":-0.061111093},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.19583334,"top":1.0,"width":0.017361112,"height":-0.061111093},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.21458334,"top":1.0,"width":0.016666668,"height":-0.061111093},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.2326389,"top":1.0,"width":0.017361112,"height":-0.061111093},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"bounds":{"left":0.25069445,"top":1.0,"width":0.007638889,"height":-0.061111093},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:25 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ -zsh","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:24 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ -zsh","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:21 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ ⠐ Research Western Digital Red Plus pricing","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:20 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ ✳ Research Western Digital Red Plus pricing","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:20 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ ⠂ Research Western Digital Red Plus pricing","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:20 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ ⠐ Research Western Digital Red Plus pricing","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:20 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ ✳ Research Western Digital Red Plus pricing","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:20","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2Shell|Edit|ViewSessionScriptsProfilesWindowHelp100%","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"8Thu 9 Apr 21:20:25DOCKERDEV (-zsh)APP (-zsh)* Research Western Digital","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing* Research Western Digital","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...X4-zsh• screenpipe - Search Content (MCP)(q: \"Western...","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:20 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"click","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"AXDockItem","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"→","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Slack","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:20 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"click","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:20 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ ⠐ Research Western Digital Red Plus pricing","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:20 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ ⠂ Research Western Digital Red Plus pricing","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:19 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ ⠐ Research Western Digital Red Plus pricing","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:19 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ ✳ Research Western Digital Red Plus pricing","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:19 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ ✳ Research Western Digital Red Plus pricing","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:19 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ ⠐ Research Western Digital Red Plus pricing","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:19 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ ⠂ Research Western Digital Red Plus pricing","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:19 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ ⠐ Research Western Digital Red Plus pricing","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...500) ⎿ Interrupted · What should Claude do instead?","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"⏺ The screenpipe MCP server has disconnected, so I can't search your screen history...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:19 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ ⠂ Research Western Digital Red Plus pricing","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...500) ⎿ Interrupted · What should Claude do instead?","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"⏺ The screenpipe MCP server has disconnected, so I can't search your screen history...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:18","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"clipboard","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"What was the cheapest Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"?","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:18 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"key","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:18 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"key","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:18 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"key","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:18 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"key","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:18 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"key","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
243597075861210352
|
-2959138326343415920
|
click
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Close tab
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Screenpipe
Screenpipe
Activity
Search
Audio
Work Report
AI Summary
Date
12
/
04
/
2026
Calendar
Red plus
Search
Source
App
any app
Date
dd
/
mm
/
yyyy
Calendar
(blank = all dates)
From
--
:
--
To
--
:
--
FTS tip: single words work best · "exact phrase" · term1 OR term2
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:2000 GB3000 Gb4000 Gb6000 GB8000 Gb6твwestem...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gbb000 GbSOO0 GHОтвwestemn...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...
18:29 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:29 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:28 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:25 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:23 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:23 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:18 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:18 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:17 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
15:53 ·
QuickTime Player
/ compact_monitor_1_1775908431491.mp4
...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: "WD
Red
Plus
6TB", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: "
Red
Plus
6TB", limit...
15:53 ·
QuickTime Player
/ compact_monitor_1_1775908431491.mp4
...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: "WD
Red
Plus
6TB", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: "
Red
Plus
6TB", limit...
15:53 ·
QuickTime Player
/ compact_monitor_1_1775908431491.mp4
...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: "WD
Red
Plus
6TB", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: "
Red
Plus
6TB", limit...
21:25 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:25 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:25 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:24 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:21 ·
iTerm2
/ ⠐ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20 ·
iTerm2
/ ✳ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20 ·
iTerm2
/ ⠂ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20 ·
iTerm2
/ ⠐ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20 ·
iTerm2
/ ✳ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20
iTerm2Shell|Edit|ViewSessionScriptsProfilesWindowHelp100%
8Thu 9 Apr 21:20:25DOCKERDEV (-zsh)APP (-zsh)* Research Western Digital
Red
Plus
pricing* Research Western Digital
Red
...X4-zsh• screenpipe - Search Content (MCP)(q: "Western...
21:20 ·
iTerm2
click
AXDockItem
→
Slack
21:20 ·
iTerm2
click
21:20 ·
iTerm2
/ ⠐ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20 ·
iTerm2
/ ⠂ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:19 ·
iTerm2
/ ⠐ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:19 ·
iTerm2
/ ✳ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:19 ·
iTerm2
/ ✳ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:19 ·
iTerm2
/ ⠐ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:19 ·
iTerm2
/ ⠂ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:19 ·
iTerm2
/ ⠐ Research Western Digital Red Plus pricing
...500) ⎿ Interrupted · What should Claude do instead?
red
plus
⏺ The screenpipe MCP server has disconnected, so I can't search your screen history...
21:19 ·
iTerm2
/ ⠂ Research Western Digital Red Plus pricing
...500) ⎿ Interrupted · What should Claude do instead?
red
plus
⏺ The screenpipe MCP server has disconnected, so I can't search your screen history...
21:18
clipboard
What was the cheapest Western Digital
Red
Plus
?
21:18 ·
iTerm2
key
21:18 ·
iTerm2
key
21:18 ·
iTerm2
key
21:18 ·
iTerm2
key
21:18 ·
iTerm2
key...
|
7550
|
|
7552
|
140
|
50
|
2026-04-13T16:01:51.779166+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096111779_m1.jpg...
|
Firefox
|
Screenpipe Dashboard — Personal
|
True
|
http://100.73.206.126:8766
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Close tab
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Screenpipe
Screenpipe
Activity
Search
Audio
Work Report
AI Summary
Date
12
/
04
/
2026
Calendar
Red plus
Search
Source
App
any app
Date
dd
/
mm
/
yyyy
Calendar
(blank = all dates)
From
--
:
--
To
--
:
--
FTS tip: single words work best · "exact phrase" · term1 OR term2
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:2000 GB3000 Gb4000 Gb6000 GB8000 Gb6твwestem...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gbb000 GbSOO0 GHОтвwestemn...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...
18:29 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:29 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:28 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:25 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:23 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:23 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:18 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:18 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:17 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
15:53 ·
QuickTime Player
/ compact_monitor_1_1775908431491.mp4
...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: "WD
Red
Plus
6TB", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: "
Red
Plus
6TB", limit...
15:53 ·
QuickTime Player
/ compact_monitor_1_1775908431491.mp4
...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: "WD
Red
Plus
6TB", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: "
Red
Plus
6TB", limit...
15:53 ·
QuickTime Player
/ compact_monitor_1_1775908431491.mp4
...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: "WD
Red
Plus
6TB", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: "
Red
Plus
6TB", limit...
21:25 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:25 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:25 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:24 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:21 ·
iTerm2
/ ⠐ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20 ·
iTerm2
/ ✳ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20 ·
iTerm2
/ ⠂ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20 ·
iTerm2
/ ⠐ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20 ·
iTerm2
/ ✳ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20
iTerm2Shell|Edit|ViewSessionScriptsProfilesWindowHelp100%
8Thu 9 Apr 21:20:25DOCKERDEV (-zsh)APP (-zsh)* Research Western Digital
Red
Plus
pricing* Research Western Digital
Red
...X4-zsh• screenpipe - Search Content (MCP)(q: "Western...
21:20 ·
iTerm2
click
AXDockItem
→
Slack
21:20 ·
iTerm2
click
21:20 ·
iTerm2
/ ⠐ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20 ·
iTerm2
/ ⠂ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:19 ·
iTerm2
/ ⠐ Research Western Digital Red Plus pricing
...⏺
Red...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Inbox - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Shameless • HBO Max","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Shameless • HBO Max","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Mute tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Machines - Tailscale","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Machines - Tailscale","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe Dashboard","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Screenpipe Dashboard","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Pazaruvaj.com — Знак, че е време за най-добрите оферти","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pazaruvaj.com — Знак, че е време за най-добрите оферти","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"google maps timeline export - Google Search","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"google maps timeline export - Google Search","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Screenpipe","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Screenpipe","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Activity","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Search","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Audio","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Work Report","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"AI Summary","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Date","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"12","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"04","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2026","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Calendar","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Red plus","depth":8,"value":"Red plus","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Search","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Source","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"App","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXComboBox","text":"any app","depth":8,"help_text":"","role_description":"combo box","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Date","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"dd","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"mm","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"yyyy","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Calendar","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"(blank = all dates)","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"From","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":":","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"To","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":":","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"FTS tip: single words work best · \"exact phrase\" · term1 OR term2","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:39","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:2000 GB3000 Gb4000 Gb6000 GB8000 Gb6твwestem...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:39","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gbb000 GbSOO0 GHОтвwestemn...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:39","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:39","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:29 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...21:19 · iTerm2 / ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...was the cheapest Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...20) ⏺ screenpipe...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:29 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...21:19 · iTerm2 / ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...was the cheapest Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...20) ⏺ screenpipe...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:28 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:26 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:26 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:26 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:25 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:23 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.23055555,"top":0.0,"width":0.016666668,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"bounds":{"left":0.24791667,"top":0.0,"width":0.007638889,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:23 ·","depth":10,"bounds":{"left":0.16388889,"top":0.0,"width":0.02638889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"bounds":{"left":0.19027779,"top":0.0,"width":0.027083334,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"bounds":{"left":0.21736111,"top":0.0,"width":0.13194445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"bounds":{"left":0.16388889,"top":0.0,"width":0.090277776,"height":0.014444444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"bounds":{"left":0.16388889,"top":0.0,"width":0.20069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.36527777,"top":0.0,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.38541666,"top":0.0,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"bounds":{"left":0.40347221,"top":0.0,"width":0.16319445,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5673611,"top":0.0,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.5875,"top":0.0,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"bounds":{"left":0.60625,"top":0.0,"width":0.15069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.7576389,"top":0.0,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.7777778,"top":0.0,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"bounds":{"left":0.16388889,"top":0.0,"width":0.82708335,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.23055555,"top":0.011111111,"width":0.016666668,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"bounds":{"left":0.24791667,"top":0.011111111,"width":0.007638889,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:19 ·","depth":10,"bounds":{"left":0.16388889,"top":0.055555556,"width":0.025694445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"bounds":{"left":0.18958333,"top":0.055555556,"width":0.02638889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"bounds":{"left":0.21597221,"top":0.055555556,"width":0.13263889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"bounds":{"left":0.16388889,"top":0.07444444,"width":0.090277776,"height":0.014444444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"bounds":{"left":0.16388889,"top":0.096666664,"width":0.20069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.36527777,"top":0.096666664,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.38541666,"top":0.096666664,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"bounds":{"left":0.40347221,"top":0.096666664,"width":0.16319445,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5673611,"top":0.096666664,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.5875,"top":0.096666664,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"bounds":{"left":0.60625,"top":0.096666664,"width":0.15069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.7576389,"top":0.096666664,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.7777778,"top":0.096666664,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"bounds":{"left":0.16388889,"top":0.096666664,"width":0.82708335,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.23055555,"top":0.11888889,"width":0.016666668,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"bounds":{"left":0.24791667,"top":0.11888889,"width":0.007638889,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:19 ·","depth":10,"bounds":{"left":0.16388889,"top":0.16333333,"width":0.025694445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"bounds":{"left":0.18958333,"top":0.16333333,"width":0.02638889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"bounds":{"left":0.21597221,"top":0.16333333,"width":0.13263889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"bounds":{"left":0.16388889,"top":0.18222222,"width":0.090277776,"height":0.014444444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"bounds":{"left":0.16388889,"top":0.20444444,"width":0.20069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.36527777,"top":0.20444444,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.38541666,"top":0.20444444,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"bounds":{"left":0.40347221,"top":0.20444444,"width":0.16319445,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5673611,"top":0.20444444,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.5875,"top":0.20444444,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"bounds":{"left":0.60625,"top":0.20444444,"width":0.15069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.7576389,"top":0.20444444,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.7777778,"top":0.20444444,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"bounds":{"left":0.16388889,"top":0.20444444,"width":0.82708335,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.23055555,"top":0.22666667,"width":0.016666668,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"bounds":{"left":0.24791667,"top":0.22666667,"width":0.007638889,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:19 ·","depth":10,"bounds":{"left":0.16388889,"top":0.2711111,"width":0.025694445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"bounds":{"left":0.18958333,"top":0.2711111,"width":0.02638889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"bounds":{"left":0.21597221,"top":0.2711111,"width":0.13263889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"bounds":{"left":0.16388889,"top":0.29,"width":0.090277776,"height":0.014444444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...21:19 · iTerm2 / ⠂ Research Western Digital","depth":10,"bounds":{"left":0.16388889,"top":0.3122222,"width":0.19027779,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.3548611,"top":0.3122222,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.375,"top":0.3122222,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...was the cheapest Western Digital","depth":10,"bounds":{"left":0.39375,"top":0.3122222,"width":0.18402778,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5784722,"top":0.3122222,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.5986111,"top":0.3122222,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital","depth":10,"bounds":{"left":0.6166667,"top":0.3122222,"width":0.26875,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.88611114,"top":0.3122222,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.90625,"top":0.3122222,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...20) ⏺ screenpipe...","depth":10,"bounds":{"left":0.16388889,"top":0.3122222,"width":0.825,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:18 ·","depth":10,"bounds":{"left":0.16388889,"top":0.37888888,"width":0.025694445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"bounds":{"left":0.18958333,"top":0.37888888,"width":0.027083334,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"bounds":{"left":0.21666667,"top":0.37888888,"width":0.13194445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"bounds":{"left":0.16388889,"top":0.39777777,"width":0.090277776,"height":0.014444444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"bounds":{"left":0.16388889,"top":0.42,"width":0.20069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.36527777,"top":0.42,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.38541666,"top":0.42,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"bounds":{"left":0.40347221,"top":0.42,"width":0.16319445,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5673611,"top":0.42,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.5875,"top":0.42,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"bounds":{"left":0.60625,"top":0.42,"width":0.15069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.7576389,"top":0.42,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.7777778,"top":0.42,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"bounds":{"left":0.16388889,"top":0.42,"width":0.82708335,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.23055555,"top":0.4422222,"width":0.016666668,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"bounds":{"left":0.24791667,"top":0.4422222,"width":0.007638889,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:18 ·","depth":10,"bounds":{"left":0.16388889,"top":0.48666668,"width":0.025694445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"bounds":{"left":0.18958333,"top":0.48666668,"width":0.027083334,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"bounds":{"left":0.21666667,"top":0.48666668,"width":0.13194445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"bounds":{"left":0.16388889,"top":0.50555557,"width":0.090277776,"height":0.014444444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"bounds":{"left":0.16388889,"top":0.5277778,"width":0.20069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.36527777,"top":0.5277778,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.38541666,"top":0.5277778,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"bounds":{"left":0.40347221,"top":0.5277778,"width":0.16319445,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5673611,"top":0.5277778,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.5875,"top":0.5277778,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"bounds":{"left":0.60625,"top":0.5277778,"width":0.15069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.7576389,"top":0.5277778,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.7777778,"top":0.5277778,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"bounds":{"left":0.16388889,"top":0.5277778,"width":0.82708335,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.23055555,"top":0.55,"width":0.016666668,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"bounds":{"left":0.24791667,"top":0.55,"width":0.007638889,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:17 ·","depth":10,"bounds":{"left":0.16388889,"top":0.59444445,"width":0.025,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"bounds":{"left":0.18888889,"top":0.59444445,"width":0.027083334,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"bounds":{"left":0.21597221,"top":0.59444445,"width":0.13194445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"bounds":{"left":0.16388889,"top":0.61333334,"width":0.090277776,"height":0.014444444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"bounds":{"left":0.16388889,"top":0.63555557,"width":0.20069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.36527777,"top":0.63555557,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.38541666,"top":0.63555557,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"bounds":{"left":0.40347221,"top":0.63555557,"width":0.16319445,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5673611,"top":0.63555557,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.5875,"top":0.63555557,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"bounds":{"left":0.60625,"top":0.63555557,"width":0.15069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.7576389,"top":0.63555557,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.7777778,"top":0.63555557,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"bounds":{"left":0.16388889,"top":0.63555557,"width":0.82708335,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.23055555,"top":0.6577778,"width":0.016666668,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"bounds":{"left":0.24791667,"top":0.6577778,"width":0.007638889,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"15:53 ·","depth":10,"bounds":{"left":0.16388889,"top":0.7022222,"width":0.02638889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"QuickTime Player","depth":11,"bounds":{"left":0.19027779,"top":0.7022222,"width":0.068055555,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ compact_monitor_1_1775908431491.mp4","depth":10,"bounds":{"left":0.25833333,"top":0.7022222,"width":0.15833333,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: \"WD","depth":10,"bounds":{"left":0.16388889,"top":0.72555554,"width":0.42569444,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5902778,"top":0.72555554,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.61041665,"top":0.72555554,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB\", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: \"","depth":10,"bounds":{"left":0.62916666,"top":0.72555554,"width":0.2951389,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.925,"top":0.72555554,"width":0.016666668,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.9458333,"top":0.72555554,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB\", limit...","depth":10,"bounds":{"left":0.16388889,"top":0.72555554,"width":0.82569444,"height":0.03888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"15:53 ·","depth":10,"bounds":{"left":0.16388889,"top":0.7911111,"width":0.02638889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"QuickTime Player","depth":11,"bounds":{"left":0.19027779,"top":0.7911111,"width":0.068055555,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ compact_monitor_1_1775908431491.mp4","depth":10,"bounds":{"left":0.25833333,"top":0.7911111,"width":0.15833333,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: \"WD","depth":10,"bounds":{"left":0.16388889,"top":0.8144444,"width":0.42569444,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5902778,"top":0.8144444,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.61041665,"top":0.8144444,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB\", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: \"","depth":10,"bounds":{"left":0.62916666,"top":0.8144444,"width":0.2951389,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.925,"top":0.8144444,"width":0.016666668,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.9458333,"top":0.8144444,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB\", limit...","depth":10,"bounds":{"left":0.16388889,"top":0.8144444,"width":0.82569444,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"15:53 ·","depth":10,"bounds":{"left":0.16388889,"top":0.8811111,"width":0.02638889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"QuickTime Player","depth":11,"bounds":{"left":0.19027779,"top":0.8811111,"width":0.068055555,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ compact_monitor_1_1775908431491.mp4","depth":10,"bounds":{"left":0.25833333,"top":0.8811111,"width":0.15833333,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: \"WD","depth":10,"bounds":{"left":0.16388889,"top":0.90444446,"width":0.42569444,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5902778,"top":0.90444446,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.61041665,"top":0.90444446,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB\", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: \"","depth":10,"bounds":{"left":0.62916666,"top":0.90444446,"width":0.2951389,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.925,"top":0.90444446,"width":0.016666668,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.9458333,"top":0.90444446,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB\", limit...","depth":10,"bounds":{"left":0.16388889,"top":0.90444446,"width":0.82569444,"height":0.03888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:25 ·","depth":10,"bounds":{"left":0.16388889,"top":0.97,"width":0.02638889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"bounds":{"left":0.19027779,"top":0.97,"width":0.02638889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ -zsh","depth":10,"bounds":{"left":0.21666667,"top":0.97,"width":0.022916667,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"bounds":{"left":0.16388889,"top":0.99333334,"width":0.013194445,"height":0.0066666603},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.17777778,"top":0.99333334,"width":0.016666668,"height":0.0066666603},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.19583334,"top":0.99333334,"width":0.017361112,"height":0.0066666603},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.21458334,"top":0.99333334,"width":0.016666668,"height":0.0066666603},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.2326389,"top":0.99333334,"width":0.017361112,"height":0.0066666603},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"bounds":{"left":0.25069445,"top":0.99333334,"width":0.007638889,"height":0.0066666603},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:25 ·","depth":10,"bounds":{"left":0.16388889,"top":1.0,"width":0.02638889,"height":-0.03777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"bounds":{"left":0.19027779,"top":1.0,"width":0.02638889,"height":-0.03777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ -zsh","depth":10,"bounds":{"left":0.21666667,"top":1.0,"width":0.022916667,"height":-0.03777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"bounds":{"left":0.16388889,"top":1.0,"width":0.013194445,"height":-0.061111093},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.17777778,"top":1.0,"width":0.016666668,"height":-0.061111093},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.19583334,"top":1.0,"width":0.017361112,"height":-0.061111093},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.21458334,"top":1.0,"width":0.016666668,"height":-0.061111093},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.2326389,"top":1.0,"width":0.017361112,"height":-0.061111093},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"bounds":{"left":0.25069445,"top":1.0,"width":0.007638889,"height":-0.061111093},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:25 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ -zsh","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:24 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ -zsh","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:21 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ ⠐ Research Western Digital Red Plus pricing","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:20 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ ✳ Research Western Digital Red Plus pricing","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:20 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ ⠂ Research Western Digital Red Plus pricing","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:20 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ ⠐ Research Western Digital Red Plus pricing","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:20 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ ✳ Research Western Digital Red Plus pricing","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:20","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2Shell|Edit|ViewSessionScriptsProfilesWindowHelp100%","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"8Thu 9 Apr 21:20:25DOCKERDEV (-zsh)APP (-zsh)* Research Western Digital","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing* Research Western Digital","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...X4-zsh• screenpipe - Search Content (MCP)(q: \"Western...","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:20 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"click","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"AXDockItem","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"→","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Slack","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:20 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"click","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:20 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ ⠐ Research Western Digital Red Plus pricing","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:20 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ ⠂ Research Western Digital Red Plus pricing","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:19 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ ⠐ Research Western Digital Red Plus pricing","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
7746686287813647411
|
-2923109529190496368
|
click
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Close tab
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Screenpipe
Screenpipe
Activity
Search
Audio
Work Report
AI Summary
Date
12
/
04
/
2026
Calendar
Red plus
Search
Source
App
any app
Date
dd
/
mm
/
yyyy
Calendar
(blank = all dates)
From
--
:
--
To
--
:
--
FTS tip: single words work best · "exact phrase" · term1 OR term2
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:2000 GB3000 Gb4000 Gb6000 GB8000 Gb6твwestem...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gbb000 GbSOO0 GHОтвwestemn...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...
18:29 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:29 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:28 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:25 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:23 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:23 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:18 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:18 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:17 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
15:53 ·
QuickTime Player
/ compact_monitor_1_1775908431491.mp4
...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: "WD
Red
Plus
6TB", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: "
Red
Plus
6TB", limit...
15:53 ·
QuickTime Player
/ compact_monitor_1_1775908431491.mp4
...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: "WD
Red
Plus
6TB", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: "
Red
Plus
6TB", limit...
15:53 ·
QuickTime Player
/ compact_monitor_1_1775908431491.mp4
...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: "WD
Red
Plus
6TB", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: "
Red
Plus
6TB", limit...
21:25 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:25 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:25 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:24 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:21 ·
iTerm2
/ ⠐ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20 ·
iTerm2
/ ✳ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20 ·
iTerm2
/ ⠂ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20 ·
iTerm2
/ ⠐ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20 ·
iTerm2
/ ✳ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20
iTerm2Shell|Edit|ViewSessionScriptsProfilesWindowHelp100%
8Thu 9 Apr 21:20:25DOCKERDEV (-zsh)APP (-zsh)* Research Western Digital
Red
Plus
pricing* Research Western Digital
Red
...X4-zsh• screenpipe - Search Content (MCP)(q: "Western...
21:20 ·
iTerm2
click
AXDockItem
→
Slack
21:20 ·
iTerm2
click
21:20 ·
iTerm2
/ ⠐ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20 ·
iTerm2
/ ⠂ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:19 ·
iTerm2
/ ⠐ Research Western Digital Red Plus pricing
...⏺
Red...
|
NULL
|
|
7554
|
140
|
52
|
2026-04-13T16:01:59.509845+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096119509_m1.jpg...
|
Firefox
|
Screenpipe Dashboard — Personal
|
True
|
http://100.73.206.126:8766
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Close tab
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Screenpipe
Screenpipe
Activity
Search
Audio
Work Report
AI Summary
Date
12
/
04
/
2026
Calendar
Red plus
Search
Source
App
any app
Date
dd
/
mm
/
yyyy
Calendar
(blank = all dates)
From
--
:
--
To
--
:
--
FTS tip: single words work best · "exact phrase" · term1 OR term2
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:2000 GB3000 Gb4000 Gb6000 GB8000 Gb6твwestem...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gbb000 GbSOO0 GHОтвwestemn...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...
18:29 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:29 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:28 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:25 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:23 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:23 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:18 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:18 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:17 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
15:53 ·
QuickTime Player
/ compact_monitor_1_1775908431491.mp4
...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: "WD
Red
Plus
6TB", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: "
Red
Plus
6TB", limit...
15:53 ·
QuickTime Player
/ compact_monitor_1_1775908431491.mp4
...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: "WD
Red
Plus
6TB", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: "
Red
Plus
6TB", limit...
15:53 ·
QuickTime Player
/ compact_monitor_1_1775908431491.mp4
...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: "WD
Red
Plus
6TB", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: "
Red
Plus
6TB", limit...
21:25 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:25 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:25 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:24 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:21 ·
iTerm2
/ ⠐ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20 ·
iTerm2
/ ✳ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20 ·
iTerm2
/ ⠂ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20 ·
iTerm2
/ ⠐ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20 ·
iTerm2
/ ✳ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20
iTerm2Shell|Edit|ViewSessionScriptsProfilesWindowHelp100%
8Thu 9 Apr 21:20:25DOCKERDEV (-zsh)APP (-zsh)* Research Western Digital
Red
Plus
pricing* Research Western Digital
Red
...X4-zsh• screenpipe - Search Content (MCP)(q: "Western...
21:20 ·
iTerm2
click
AXDockItem
→
Slack
21:20 ·
iTerm2
click
21:20 ·
iTerm2
/ ⠐ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20 ·...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Inbox - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Shameless • HBO Max","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Shameless • HBO Max","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Mute tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Machines - Tailscale","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Machines - Tailscale","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe Dashboard","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Screenpipe Dashboard","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Pazaruvaj.com — Знак, че е време за най-добрите оферти","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pazaruvaj.com — Знак, че е време за най-добрите оферти","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"google maps timeline export - Google Search","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"google maps timeline export - Google Search","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Screenpipe","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Screenpipe","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Activity","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Search","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Audio","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Work Report","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"AI Summary","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Date","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"12","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"04","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2026","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Calendar","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Red plus","depth":8,"value":"Red plus","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Search","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Source","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"App","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXComboBox","text":"any app","depth":8,"help_text":"","role_description":"combo box","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Date","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"dd","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"mm","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"yyyy","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Calendar","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"(blank = all dates)","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"From","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":":","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"To","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":":","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"FTS tip: single words work best · \"exact phrase\" · term1 OR term2","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:39","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:2000 GB3000 Gb4000 Gb6000 GB8000 Gb6твwestem...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:39","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gbb000 GbSOO0 GHОтвwestemn...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:39","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:39","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:29 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...21:19 · iTerm2 / ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...was the cheapest Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...20) ⏺ screenpipe...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:29 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...21:19 · iTerm2 / ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...was the cheapest Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...20) ⏺ screenpipe...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:28 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:26 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:26 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:26 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:25 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:23 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:23 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:19 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:19 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:19 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...21:19 · iTerm2 / ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...was the cheapest Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...20) ⏺ screenpipe...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:18 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:18 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:17 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"15:53 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"QuickTime Player","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ compact_monitor_1_1775908431491.mp4","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: \"WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB\", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: \"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB\", limit...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"15:53 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"QuickTime Player","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ compact_monitor_1_1775908431491.mp4","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: \"WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB\", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: \"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB\", limit...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"15:53 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"QuickTime Player","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ compact_monitor_1_1775908431491.mp4","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: \"WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB\", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: \"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB\", limit...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:25 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ -zsh","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:25 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ -zsh","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:25 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ -zsh","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:24 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ -zsh","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:21 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ ⠐ Research Western Digital Red Plus pricing","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:20 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ ✳ Research Western Digital Red Plus pricing","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:20 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ ⠂ Research Western Digital Red Plus pricing","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:20 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ ⠐ Research Western Digital Red Plus pricing","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:20 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ ✳ Research Western Digital Red Plus pricing","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:20","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2Shell|Edit|ViewSessionScriptsProfilesWindowHelp100%","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"8Thu 9 Apr 21:20:25DOCKERDEV (-zsh)APP (-zsh)* Research Western Digital","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing* Research Western Digital","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...X4-zsh• screenpipe - Search Content (MCP)(q: \"Western...","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:20 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"click","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"AXDockItem","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"→","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Slack","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:20 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"click","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:20 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ ⠐ Research Western Digital Red Plus pricing","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:20 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
-5139441891822427524
|
-2923109529190496368
|
click
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Close tab
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Screenpipe
Screenpipe
Activity
Search
Audio
Work Report
AI Summary
Date
12
/
04
/
2026
Calendar
Red plus
Search
Source
App
any app
Date
dd
/
mm
/
yyyy
Calendar
(blank = all dates)
From
--
:
--
To
--
:
--
FTS tip: single words work best · "exact phrase" · term1 OR term2
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:2000 GB3000 Gb4000 Gb6000 GB8000 Gb6твwestem...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gbb000 GbSOO0 GHОтвwestemn...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...
18:29 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:29 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:28 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:25 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:23 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:23 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:18 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:18 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:17 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
15:53 ·
QuickTime Player
/ compact_monitor_1_1775908431491.mp4
...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: "WD
Red
Plus
6TB", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: "
Red
Plus
6TB", limit...
15:53 ·
QuickTime Player
/ compact_monitor_1_1775908431491.mp4
...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: "WD
Red
Plus
6TB", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: "
Red
Plus
6TB", limit...
15:53 ·
QuickTime Player
/ compact_monitor_1_1775908431491.mp4
...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: "WD
Red
Plus
6TB", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: "
Red
Plus
6TB", limit...
21:25 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:25 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:25 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:24 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:21 ·
iTerm2
/ ⠐ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20 ·
iTerm2
/ ✳ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20 ·
iTerm2
/ ⠂ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20 ·
iTerm2
/ ⠐ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20 ·
iTerm2
/ ✳ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20
iTerm2Shell|Edit|ViewSessionScriptsProfilesWindowHelp100%
8Thu 9 Apr 21:20:25DOCKERDEV (-zsh)APP (-zsh)* Research Western Digital
Red
Plus
pricing* Research Western Digital
Red
...X4-zsh• screenpipe - Search Content (MCP)(q: "Western...
21:20 ·
iTerm2
click
AXDockItem
→
Slack
21:20 ·
iTerm2
click
21:20 ·
iTerm2
/ ⠐ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20 ·...
|
NULL
|
|
7555
|
NULL
|
0
|
2026-04-13T16:02:04.136093+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096124136_m1.jpg...
|
Firefox
|
Screenpipe Dashboard — Personal
|
True
|
http://100.73.206.126:8766
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Close tab
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Screenpipe
Screenpipe
Activity
Search
Audio
Work Report
AI Summary
Date
12
/
04
/
2026
Calendar
Red plus
Search
Source
App
any app
Date
dd
/
mm
/
yyyy
Calendar
(blank = all dates)
From
--
:
--
To
--
:
--
FTS tip: single words work best · "exact phrase" · term1 OR term2
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:2000 GB3000 Gb4000 Gb6000 GB8000 Gb6твwestem...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gbb000 GbSOO0 GHОтвwestemn...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...
18:29 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:29 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:28 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:25 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:23 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:23 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:18 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:18 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:17 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
15:53 ·
QuickTime Player
/ compact_monitor_1_1775908431491.mp4
...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: "WD
Red
Plus
6TB", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: "
Red
Plus
6TB", limit...
15:53 ·
QuickTime Player
/ compact_monitor_1_1775908431491.mp4
...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: "WD
Red
Plus
6TB", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: "
Red
Plus
6TB", limit...
15:53 ·
QuickTime Player
/ compact_monitor_1_1775908431491.mp4
...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: "WD
Red
Plus
6TB", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: "
Red
Plus
6TB", limit...
21:25 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:25 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:25 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:24 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:21 ·
iTerm2
/ ⠐ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20 ·
iTerm2
/ ✳ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20 ·
iTerm2
/ ⠂ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20 ·
iTerm2
/ ⠐ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20 ·
iTerm2
/ ✳ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20
iTerm2Shell|Edit|ViewSessionScriptsProfilesWindowHelp100%...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Inbox - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Shameless • HBO Max","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Shameless • HBO Max","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Mute tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Machines - Tailscale","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Machines - Tailscale","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe Dashboard","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Screenpipe Dashboard","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Pazaruvaj.com — Знак, че е време за най-добрите оферти","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pazaruvaj.com — Знак, че е време за най-добрите оферти","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"google maps timeline export - Google Search","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"google maps timeline export - Google Search","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Screenpipe","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Screenpipe","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Activity","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Search","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Audio","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Work Report","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"AI Summary","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Date","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"12","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"04","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2026","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Calendar","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Red plus","depth":8,"value":"Red plus","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Search","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Source","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"App","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXComboBox","text":"any app","depth":8,"help_text":"","role_description":"combo box","subrole":"AXUnknown","is_enabled":true,"is_focused":true,"is_selected":false},{"role":"AXStaticText","text":"Date","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"dd","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"mm","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"yyyy","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Calendar","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"(blank = all dates)","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"From","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":":","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"To","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":":","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"FTS tip: single words work best · \"exact phrase\" · term1 OR term2","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:39","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:2000 GB3000 Gb4000 Gb6000 GB8000 Gb6твwestem...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:39","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gbb000 GbSOO0 GHОтвwestemn...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:39","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:39","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:29 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...21:19 · iTerm2 / ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...was the cheapest Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...20) ⏺ screenpipe...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:29 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...21:19 · iTerm2 / ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...was the cheapest Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...20) ⏺ screenpipe...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:28 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:26 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:26 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:26 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:25 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:23 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.23055555,"top":0.0,"width":0.016666668,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"bounds":{"left":0.24791667,"top":0.0,"width":0.007638889,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:23 ·","depth":10,"bounds":{"left":0.16388889,"top":0.0,"width":0.02638889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"bounds":{"left":0.19027779,"top":0.0,"width":0.027083334,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"bounds":{"left":0.21736111,"top":0.0,"width":0.13194445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"bounds":{"left":0.16388889,"top":0.0,"width":0.090277776,"height":0.014444444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"bounds":{"left":0.16388889,"top":0.0,"width":0.20069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.36527777,"top":0.0,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.38541666,"top":0.0,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"bounds":{"left":0.40347221,"top":0.0,"width":0.16319445,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5673611,"top":0.0,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.5875,"top":0.0,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"bounds":{"left":0.60625,"top":0.0,"width":0.15069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.7576389,"top":0.0,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.7777778,"top":0.0,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"bounds":{"left":0.16388889,"top":0.0,"width":0.82708335,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.23055555,"top":0.011111111,"width":0.016666668,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"bounds":{"left":0.24791667,"top":0.011111111,"width":0.007638889,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:19 ·","depth":10,"bounds":{"left":0.16388889,"top":0.055555556,"width":0.025694445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"bounds":{"left":0.18958333,"top":0.055555556,"width":0.02638889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"bounds":{"left":0.21597221,"top":0.055555556,"width":0.13263889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"bounds":{"left":0.16388889,"top":0.07444444,"width":0.090277776,"height":0.014444444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"bounds":{"left":0.16388889,"top":0.096666664,"width":0.20069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.36527777,"top":0.096666664,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.38541666,"top":0.096666664,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"bounds":{"left":0.40347221,"top":0.096666664,"width":0.16319445,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5673611,"top":0.096666664,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.5875,"top":0.096666664,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"bounds":{"left":0.60625,"top":0.096666664,"width":0.15069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.7576389,"top":0.096666664,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.7777778,"top":0.096666664,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"bounds":{"left":0.16388889,"top":0.096666664,"width":0.82708335,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.23055555,"top":0.11888889,"width":0.016666668,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"bounds":{"left":0.24791667,"top":0.11888889,"width":0.007638889,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:19 ·","depth":10,"bounds":{"left":0.16388889,"top":0.16333333,"width":0.025694445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"bounds":{"left":0.18958333,"top":0.16333333,"width":0.02638889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"bounds":{"left":0.21597221,"top":0.16333333,"width":0.13263889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"bounds":{"left":0.16388889,"top":0.18222222,"width":0.090277776,"height":0.014444444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"bounds":{"left":0.16388889,"top":0.20444444,"width":0.20069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.36527777,"top":0.20444444,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.38541666,"top":0.20444444,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"bounds":{"left":0.40347221,"top":0.20444444,"width":0.16319445,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5673611,"top":0.20444444,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.5875,"top":0.20444444,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"bounds":{"left":0.60625,"top":0.20444444,"width":0.15069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.7576389,"top":0.20444444,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.7777778,"top":0.20444444,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"bounds":{"left":0.16388889,"top":0.20444444,"width":0.82708335,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.23055555,"top":0.22666667,"width":0.016666668,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"bounds":{"left":0.24791667,"top":0.22666667,"width":0.007638889,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:19 ·","depth":10,"bounds":{"left":0.16388889,"top":0.2711111,"width":0.025694445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"bounds":{"left":0.18958333,"top":0.2711111,"width":0.02638889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"bounds":{"left":0.21597221,"top":0.2711111,"width":0.13263889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"bounds":{"left":0.16388889,"top":0.29,"width":0.090277776,"height":0.014444444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...21:19 · iTerm2 / ⠂ Research Western Digital","depth":10,"bounds":{"left":0.16388889,"top":0.3122222,"width":0.19027779,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.3548611,"top":0.3122222,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.375,"top":0.3122222,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...was the cheapest Western Digital","depth":10,"bounds":{"left":0.39375,"top":0.3122222,"width":0.18402778,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5784722,"top":0.3122222,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.5986111,"top":0.3122222,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital","depth":10,"bounds":{"left":0.6166667,"top":0.3122222,"width":0.26875,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.88611114,"top":0.3122222,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.90625,"top":0.3122222,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...20) ⏺ screenpipe...","depth":10,"bounds":{"left":0.16388889,"top":0.3122222,"width":0.825,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:18 ·","depth":10,"bounds":{"left":0.16388889,"top":0.37888888,"width":0.025694445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"bounds":{"left":0.18958333,"top":0.37888888,"width":0.027083334,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"bounds":{"left":0.21666667,"top":0.37888888,"width":0.13194445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"bounds":{"left":0.16388889,"top":0.39777777,"width":0.090277776,"height":0.014444444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"bounds":{"left":0.16388889,"top":0.42,"width":0.20069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.36527777,"top":0.42,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.38541666,"top":0.42,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"bounds":{"left":0.40347221,"top":0.42,"width":0.16319445,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5673611,"top":0.42,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.5875,"top":0.42,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"bounds":{"left":0.60625,"top":0.42,"width":0.15069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.7576389,"top":0.42,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.7777778,"top":0.42,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"bounds":{"left":0.16388889,"top":0.42,"width":0.82708335,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.23055555,"top":0.4422222,"width":0.016666668,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"bounds":{"left":0.24791667,"top":0.4422222,"width":0.007638889,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:18 ·","depth":10,"bounds":{"left":0.16388889,"top":0.48666668,"width":0.025694445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"bounds":{"left":0.18958333,"top":0.48666668,"width":0.027083334,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"bounds":{"left":0.21666667,"top":0.48666668,"width":0.13194445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"bounds":{"left":0.16388889,"top":0.50555557,"width":0.090277776,"height":0.014444444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"bounds":{"left":0.16388889,"top":0.5277778,"width":0.20069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.36527777,"top":0.5277778,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.38541666,"top":0.5277778,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"bounds":{"left":0.40347221,"top":0.5277778,"width":0.16319445,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5673611,"top":0.5277778,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.5875,"top":0.5277778,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"bounds":{"left":0.60625,"top":0.5277778,"width":0.15069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.7576389,"top":0.5277778,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.7777778,"top":0.5277778,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"bounds":{"left":0.16388889,"top":0.5277778,"width":0.82708335,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.23055555,"top":0.55,"width":0.016666668,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"bounds":{"left":0.24791667,"top":0.55,"width":0.007638889,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:17 ·","depth":10,"bounds":{"left":0.16388889,"top":0.59444445,"width":0.025,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"bounds":{"left":0.18888889,"top":0.59444445,"width":0.027083334,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"bounds":{"left":0.21597221,"top":0.59444445,"width":0.13194445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"bounds":{"left":0.16388889,"top":0.61333334,"width":0.090277776,"height":0.014444444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"bounds":{"left":0.16388889,"top":0.63555557,"width":0.20069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.36527777,"top":0.63555557,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.38541666,"top":0.63555557,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"bounds":{"left":0.40347221,"top":0.63555557,"width":0.16319445,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5673611,"top":0.63555557,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.5875,"top":0.63555557,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"bounds":{"left":0.60625,"top":0.63555557,"width":0.15069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.7576389,"top":0.63555557,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.7777778,"top":0.63555557,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"bounds":{"left":0.16388889,"top":0.63555557,"width":0.82708335,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.23055555,"top":0.6577778,"width":0.016666668,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"bounds":{"left":0.24791667,"top":0.6577778,"width":0.007638889,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"15:53 ·","depth":10,"bounds":{"left":0.16388889,"top":0.7022222,"width":0.02638889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"QuickTime Player","depth":11,"bounds":{"left":0.19027779,"top":0.7022222,"width":0.068055555,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ compact_monitor_1_1775908431491.mp4","depth":10,"bounds":{"left":0.25833333,"top":0.7022222,"width":0.15833333,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: \"WD","depth":10,"bounds":{"left":0.16388889,"top":0.72555554,"width":0.42569444,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5902778,"top":0.72555554,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.61041665,"top":0.72555554,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB\", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: \"","depth":10,"bounds":{"left":0.62916666,"top":0.72555554,"width":0.2951389,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.925,"top":0.72555554,"width":0.016666668,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.9458333,"top":0.72555554,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB\", limit...","depth":10,"bounds":{"left":0.16388889,"top":0.72555554,"width":0.82569444,"height":0.03888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"15:53 ·","depth":10,"bounds":{"left":0.16388889,"top":0.7911111,"width":0.02638889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"QuickTime Player","depth":11,"bounds":{"left":0.19027779,"top":0.7911111,"width":0.068055555,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ compact_monitor_1_1775908431491.mp4","depth":10,"bounds":{"left":0.25833333,"top":0.7911111,"width":0.15833333,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: \"WD","depth":10,"bounds":{"left":0.16388889,"top":0.8144444,"width":0.42569444,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5902778,"top":0.8144444,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.61041665,"top":0.8144444,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB\", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: \"","depth":10,"bounds":{"left":0.62916666,"top":0.8144444,"width":0.2951389,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.925,"top":0.8144444,"width":0.016666668,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.9458333,"top":0.8144444,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB\", limit...","depth":10,"bounds":{"left":0.16388889,"top":0.8144444,"width":0.82569444,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"15:53 ·","depth":10,"bounds":{"left":0.16388889,"top":0.8811111,"width":0.02638889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"QuickTime Player","depth":11,"bounds":{"left":0.19027779,"top":0.8811111,"width":0.068055555,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ compact_monitor_1_1775908431491.mp4","depth":10,"bounds":{"left":0.25833333,"top":0.8811111,"width":0.15833333,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: \"WD","depth":10,"bounds":{"left":0.16388889,"top":0.90444446,"width":0.42569444,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5902778,"top":0.90444446,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.61041665,"top":0.90444446,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB\", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: \"","depth":10,"bounds":{"left":0.62916666,"top":0.90444446,"width":0.2951389,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.925,"top":0.90444446,"width":0.016666668,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.9458333,"top":0.90444446,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB\", limit...","depth":10,"bounds":{"left":0.16388889,"top":0.90444446,"width":0.82569444,"height":0.03888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:25 ·","depth":10,"bounds":{"left":0.16388889,"top":0.97,"width":0.02638889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"bounds":{"left":0.19027779,"top":0.97,"width":0.02638889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ -zsh","depth":10,"bounds":{"left":0.21666667,"top":0.97,"width":0.022916667,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"bounds":{"left":0.16388889,"top":0.99333334,"width":0.013194445,"height":0.0066666603},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.17777778,"top":0.99333334,"width":0.016666668,"height":0.0066666603},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.19583334,"top":0.99333334,"width":0.017361112,"height":0.0066666603},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.21458334,"top":0.99333334,"width":0.016666668,"height":0.0066666603},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.2326389,"top":0.99333334,"width":0.017361112,"height":0.0066666603},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"bounds":{"left":0.25069445,"top":0.99333334,"width":0.007638889,"height":0.0066666603},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:25 ·","depth":10,"bounds":{"left":0.16388889,"top":1.0,"width":0.02638889,"height":-0.03777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"bounds":{"left":0.19027779,"top":1.0,"width":0.02638889,"height":-0.03777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ -zsh","depth":10,"bounds":{"left":0.21666667,"top":1.0,"width":0.022916667,"height":-0.03777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"bounds":{"left":0.16388889,"top":1.0,"width":0.013194445,"height":-0.061111093},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.17777778,"top":1.0,"width":0.016666668,"height":-0.061111093},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.19583334,"top":1.0,"width":0.017361112,"height":-0.061111093},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.21458334,"top":1.0,"width":0.016666668,"height":-0.061111093},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.2326389,"top":1.0,"width":0.017361112,"height":-0.061111093},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"bounds":{"left":0.25069445,"top":1.0,"width":0.007638889,"height":-0.061111093},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:25 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ -zsh","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:24 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ -zsh","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:21 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ ⠐ Research Western Digital Red Plus pricing","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:20 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ ✳ Research Western Digital Red Plus pricing","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:20 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ ⠂ Research Western Digital Red Plus pricing","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:20 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ ⠐ Research Western Digital Red Plus pricing","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:20 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ ✳ Research Western Digital Red Plus pricing","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:20","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2Shell|Edit|ViewSessionScriptsProfilesWindowHelp100%","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
8308961600233459264
|
-2923109529458932848
|
click
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Close tab
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Screenpipe
Screenpipe
Activity
Search
Audio
Work Report
AI Summary
Date
12
/
04
/
2026
Calendar
Red plus
Search
Source
App
any app
Date
dd
/
mm
/
yyyy
Calendar
(blank = all dates)
From
--
:
--
To
--
:
--
FTS tip: single words work best · "exact phrase" · term1 OR term2
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:2000 GB3000 Gb4000 Gb6000 GB8000 Gb6твwestem...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gbb000 GbSOO0 GHОтвwestemn...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...
18:29 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:29 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:28 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:25 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:23 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:23 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:18 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:18 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:17 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
15:53 ·
QuickTime Player
/ compact_monitor_1_1775908431491.mp4
...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: "WD
Red
Plus
6TB", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: "
Red
Plus
6TB", limit...
15:53 ·
QuickTime Player
/ compact_monitor_1_1775908431491.mp4
...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: "WD
Red
Plus
6TB", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: "
Red
Plus
6TB", limit...
15:53 ·
QuickTime Player
/ compact_monitor_1_1775908431491.mp4
...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: "WD
Red
Plus
6TB", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: "
Red
Plus
6TB", limit...
21:25 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:25 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:25 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:24 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:21 ·
iTerm2
/ ⠐ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20 ·
iTerm2
/ ✳ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20 ·
iTerm2
/ ⠂ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20 ·
iTerm2
/ ⠐ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20 ·
iTerm2
/ ✳ Research Western Digital Red Plus pricing
...⏺
Red
Plus
Red
Plus
...
21:20
iTerm2Shell|Edit|ViewSessionScriptsProfilesWindowHelp100%...
|
7554
|
|
7556
|
141
|
0
|
2026-04-13T16:02:34.386462+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096154386_m1.jpg...
|
Firefox
|
Screenpipe Dashboard — Personal
|
True
|
http://100.73.206.126:8766
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Close tab
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Screenpipe
Screenpipe
Activity
Search
Audio
Work Report
AI Summary
Date
12
/
04
/
2026
Calendar
Red plus
Search
Source
App
any app
Date
dd
/
mm
/
yyyy
Calendar
(blank = all dates)
From
--
:
--
To
--
:
--
FTS tip: single words work best · "exact phrase" · term1 OR term2
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:2000 GB3000 Gb4000 Gb6000 GB8000 Gb6твwestem...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gbb000 GbSOO0 GHОтвwestemn...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...
18:29 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:29 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:28 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:25 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:23 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:23 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:18 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:18 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:17 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Inbox - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Shameless • HBO Max","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Shameless • HBO Max","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Mute tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Machines - Tailscale","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Machines - Tailscale","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe Dashboard","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Screenpipe Dashboard","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Pazaruvaj.com — Знак, че е време за най-добрите оферти","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pazaruvaj.com — Знак, че е време за най-добрите оферти","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"google maps timeline export - Google Search","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"google maps timeline export - Google Search","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Screenpipe","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Screenpipe","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Activity","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Search","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Audio","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Work Report","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"AI Summary","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Date","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"12","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"04","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2026","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Calendar","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Red plus","depth":8,"value":"Red plus","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Search","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Source","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"App","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXComboBox","text":"any app","depth":8,"help_text":"","role_description":"combo box","subrole":"AXUnknown","is_enabled":true,"is_focused":true,"is_selected":false},{"role":"AXStaticText","text":"Date","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"dd","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"mm","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"yyyy","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Calendar","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"(blank = all dates)","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"From","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":":","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"To","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":":","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"FTS tip: single words work best · \"exact phrase\" · term1 OR term2","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:39","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:2000 GB3000 Gb4000 Gb6000 GB8000 Gb6твwestem...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:39","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gbb000 GbSOO0 GHОтвwestemn...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:39","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:39","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:29 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...21:19 · iTerm2 / ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...was the cheapest Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...20) ⏺ screenpipe...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:29 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...21:19 · iTerm2 / ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...was the cheapest Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...20) ⏺ screenpipe...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:28 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:26 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:26 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:26 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:25 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:23 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:23 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:19 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:19 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:19 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...21:19 · iTerm2 / ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...was the cheapest Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...20) ⏺ screenpipe...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:18 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:18 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:17 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
-4480139567330758985
|
-618392454502678064
|
idle
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Close tab
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Screenpipe
Screenpipe
Activity
Search
Audio
Work Report
AI Summary
Date
12
/
04
/
2026
Calendar
Red plus
Search
Source
App
any app
Date
dd
/
mm
/
yyyy
Calendar
(blank = all dates)
From
--
:
--
To
--
:
--
FTS tip: single words work best · "exact phrase" · term1 OR term2
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:2000 GB3000 Gb4000 Gb6000 GB8000 Gb6твwestem...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gbb000 GbSOO0 GHОтвwestemn...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...
18:29 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:29 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:28 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:25 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:23 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:23 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:18 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:18 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:17 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD...
|
NULL
|
|
7557
|
141
|
1
|
2026-04-13T16:03:04.591279+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096184591_m1.jpg...
|
Code
|
Getting started with Cla… — screenpipe [SSH: 100.7 Getting started with Cla… — screenpipe [SSH: 100.73.206.126]...
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧ Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧G)
Run and Debug (⇧⌘D)
Remote Explorer
Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update
2
Claude Code
Containers
EXPLORER
EXPLORER
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
SCREENPIPE [SSH: [IP_ADDRESS]]
#recycle
app
__pycache__
consumers
static
.env
cli.py
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
data
pipes
db.sqlite
db.sqlite-shm
db.sqlite-wal
Outline Section
OUTLINE
OUTLINE
Timeline Section
TIMELINE
TIMELINE
pipe.md, Editor Group 1
Untitled-2, Editor Group 1
docker-compose.yml, preview, Editor Group 1
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
Getting started with Cla…, Editor Group 2
Problems (⇧⌘M)
PROBLEMS
Output (⇧⌘U)
OUTPUT
Debug Console (⇧⌘Y)
DEBUG CONSOLE
Terminal (⌃`)
TERMINAL
Ports
PORTS
remote SSH: [IP_ADDRESS]
SSH: [IP_ADDRESS]
No Problems
0
0
No Ports Forwarded
0
Notifications
Sign In
Sign In
Screen Reader Optimized
Info: Setting up SSH Host [IP_ADDRESS]: Setting up SSH tunnel
Command Succeeded
Getting started with Claude agent SDK
Session history
New session
Message actions
how to start it
Thinking
Thinking
Let me check what's in your working directory to understand what you're referring to.
Bash
IN
ls /volume1/screenpipe
Copy code to clipboard
OUT
app
data
db.sqlite
pipes
#recycle
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes
Copy code to clipboard
OUT
cli.py
consumers
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
static
ai-habits
day-recap
meeting-summary
standup-update
time-breakdown
video-export
[rerun: b2]
Read
docker-compose.yml
docker-compose.yml
This is a Screenpipe app with a Docker Compose setup. To start it:
Copy code to clipboard
cd /volume1/screenpipe/app
docker compose up -d
This builds the image (first run) and starts the container in the background
The app will be accessible at
[URL_WITH_CREDENTIALS]
sudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d
Once running, the dashboard will be at
http://your-nas-ip:8766
http://your-nas-ip:8766
and it will query the data you already copied — the database has 6,923 frames and 5,464 OCR records ready to go.
Message actions
docker-compose.yml
docker-compose.yml
I have ugos ugreen nas. I can see the ui but it is empty. No data. Also when I open it there is defsault today, lets make default yesterday.
Thinking
Thinking
Let me check why data isn't showing and look at the frontend.
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT DATE(timestamp) as d, COUNT(*) FROM frames GROUP BY d ORDER BY d DESC LIMIT 10;"
Copy code to clipboard
OUT
2026-04-13|2643
2026-04-12|2455
2026-04-11|1302
2026-04-09|523
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app/static/
Copy code to clipboard
OUT
index.html
[rerun: b2]
Bash
IN
wc -l /volume1/screenpipe/app/static/index.html
Copy code to clipboard
OUT
1048 /volume1/screenpipe/app/static/index.html
[rerun: b3]
Bash...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"Explorer (⇧⌘E)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":true},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Search (⇧⌘F)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Source Control (⌃⇧G)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Run and Debug (⇧⌘D)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Remote Explorer","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"2","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Claude Code","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Containers","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"EXPLORER","depth":17,"role_description":"heading"},{"role":"AXStaticText","text":"EXPLORER","depth":18,"role_description":"text"},{"role":"AXButton","text":"Explorer Section: screenpipe [SSH: 100.73.206.126]","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"Explorer Section: screenpipe [SSH: 100.73.206.126]","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"SCREENPIPE [SSH: 100.73.206.126]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"#recycle","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"app","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"__pycache__","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"consumers","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"static","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"cli.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"docker-compose.yml","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"Dockerfile","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"main.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"requirements.txt","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"data","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"pipes","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite-shm","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite-wal","depth":27,"role_description":"text"},{"role":"AXButton","text":"Outline Section","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"OUTLINE","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"OUTLINE","depth":23,"role_description":"text"},{"role":"AXButton","text":"Timeline Section","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"TIMELINE","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"TIMELINE","depth":23,"role_description":"text"},{"role":"AXRadioButton","text":"pipe.md, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Untitled-2, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"docker-compose.yml, preview, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXStaticText","text":"","depth":29,"role_description":"text"},{"role":"AXTextArea","text":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","depth":28,"value":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","role_description":"editor","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","depth":29,"role_description":"text"},{"role":"AXRadioButton","text":"Getting started with Cla…, Editor Group 2","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXRadioButton","text":"Problems (⇧⌘M)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"PROBLEMS","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Output (⇧⌘U)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUTPUT","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Debug Console (⇧⌘Y)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"DEBUG CONSOLE","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Terminal (⌃`)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":true},{"role":"AXStaticText","text":"TERMINAL","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Ports","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"PORTS","depth":24,"role_description":"text"},{"role":"AXButton","text":"remote SSH: 100.73.206.126","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"SSH: 100.73.206.126","depth":17,"role_description":"text"},{"role":"AXButton","text":"No Problems","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXButton","text":"No Ports Forwarded","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXButton","text":"Notifications","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sign In","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"Sign In","depth":17,"role_description":"text"},{"role":"AXButton","text":"Screen Reader Optimized","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Info: Setting up SSH Host 100.73.206.126: Setting up SSH tunnel","depth":12,"role_description":"text"},{"role":"AXStaticText","text":"Command Succeeded","depth":12,"role_description":"text"},{"role":"AXButton","text":"Getting started with Claude agent SDK","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Session history","depth":18,"help_text":"Session history","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New session","depth":18,"help_text":"New session","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"how to start it","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Let me check what's in your working directory to understand what you're referring to.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"app\ndata\ndb.sqlite\npipes\n#recycle\n[rerun: b1]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"cli.py\nconsumers\ndb.py\ndocker-compose.yml\nDockerfile\nmain.py\nrequirements.txt\nstatic\nai-habits\nday-recap\nmeeting-summary\nstandup-update\ntime-breakdown\nvideo-export\n[rerun: b2]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"docker-compose.yml","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker-compose.yml","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"This is a Screenpipe app with a Docker Compose setup. To start it:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app\ndocker compose up -d","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"This builds the image (first run) and starts the container in the background","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"The app will be accessible at","depth":23,"role_description":"text"},{"role":"AXLink","text":"http://your-server-ip:8766","depth":24,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"http://your-server-ip:8766","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"To check if it's running:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker compose ps","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"To view logs:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker compose logs -f","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Make sure an","depth":22,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"file exists in","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"before starting — the compose file references one (","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"env_file: .env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"). If it's missing, the container will fail to start.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app/.env 2>/dev/null && echo \"exists\" || echo \"MISSING\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/.env\nexists\n[rerun: b3]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"The","depth":22,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"file exists, so you're good to go. Just run:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app && docker compose up -d","depth":24,"role_description":"text"},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"docker-compose.yml","depth":22,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker-compose.yml","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"I opened it but there are no data after I coppied it there. the idea behind this app is to have the data pasted form screenpipe mac app and only query it and work with it","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Let me check the current state of the data.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls -lh /volume1/screenpipe/db.sqlite && ls /volume1/screenpipe/data/ | head -20","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"-rwxrwxrwx 1 Adm1n admin 423M Apr 13 17:20 /volume1/screenpipe/db.sqlite\n2026-04-09\n2026-04-11\n2026-04-12\n[rerun: b1]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \".tables\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"_sqlx_migrations meetings \naudio_chunks memories \naudio_tags memories_fts \naudio_transcriptions memories_fts_config \naudio_transcriptions_fts memories_fts_data \naudio_transcriptions_fts_config memories_fts_docsize \naudio_transcriptions_fts_data memories_fts_idx \naudio_transcriptions_fts_docsize ocr_text \naudio_transcriptions_fts_idx pipe_executions \nelements pipe_scheduler_state \nelements_fts speaker_embeddings \nelements_fts_config speakers \nelements_fts_data tags \nelements_fts_docsize ui_events \nelements_fts_idx ui_events_fts \nframes ui_events_fts_config \nframes_fts ui_events_fts_data \nframes_fts_config ui_events_fts_docsize \nframes_fts_content ui_events_fts_idx \nframes_fts_data video_chunks \nframes_fts_docsize vision_tags \nframes_fts_idx\n[rerun: b2]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \"SELECT COUNT(*) FROM frames; SELECT COUNT(*) FROM ocr_text; SELECT COUNT(*) FROM audio_transcriptions;\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"6923\n5464\n3\n[rerun: b3]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"The data is there — 423MB database with 6,923 frames and 5,464 OCR records. The app just isn't running yet. Let me check what the app actually does and whether it can query this data properly.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"main.py","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"main.py","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"db.py","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"db.py","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"The data is actually there — the database has 423MB of data. The app just needs to be started. Let me start it:","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app && docker compose up -d 2>&1","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Exit code 1\npermission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Get \"http://%2Fvar%2Frun%2Fdocker.sock/v1.45/containers/json?all=1&filters=%7B%22label%22%3A%7B%22com.docker.compose.config-hash%22%3Atrue%2C%22com.docker.compose.project%3Dapp%22%3Atrue%7D%7D\": dial unix /var/run/docker.sock: connect: permission denied\n[rerun: b4]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d 2>&1","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Exit code 1\nsudo: a terminal is required to read the password; either use the -S option to read from standard input or configure an askpass helper\nsudo: a password is required\n[rerun: b5]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"groups && id","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"admin users ughomeusers Media Social\nuid=1000(Adm1n) gid=10(admin) groups=10(admin),100(users),133(ughomeusers),1001(Media),1002(Social)\n[rerun: b6]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"You need to run Docker with elevated privileges. You're not in the","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"docker","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"group. There are two options:","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Option 1 — Run via Synology's Container Manager (DSM GUI)","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Open DSM → Container Manager → Project → Create project → point it to","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/docker-compose.yml","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Option 2 — Add yourself to the docker group (requires admin/root once)","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Open an SSH terminal as root (or via DSM terminal with admin):","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"sudo synogroup --add docker Adm1n\n# then log out and back in, then:\ncd /volume1/screenpipe/app && docker compose up -d","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Option 3 — Run it directly from an SSH session with sudo","depth":23,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"ssh admin@your-nas-ip\nsudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Once running, the dashboard will be at","depth":22,"role_description":"text"},{"role":"AXLink","text":"http://your-nas-ip:8766","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"http://your-nas-ip:8766","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"and it will query the data you already copied — the database has 6,923 frames and 5,464 OCR records ready to go.","depth":22,"role_description":"text"},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"docker-compose.yml","depth":22,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker-compose.yml","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"I have ugos ugreen nas. I can see the ui but it is empty. No data. Also when I open it there is defsault today, lets make default yesterday.","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Let me check why data isn't showing and look at the frontend.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \"SELECT DATE(timestamp) as d, COUNT(*) FROM frames GROUP BY d ORDER BY d DESC LIMIT 10;\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"2026-04-13|2643\n2026-04-12|2455\n2026-04-11|1302\n2026-04-09|523\n[rerun: b1]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app/static/","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"index.html\n[rerun: b2]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"wc -l /volume1/screenpipe/app/static/index.html","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"1048 /volume1/screenpipe/app/static/index.html\n[rerun: b3]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"}]...
|
-3698824738536383218
|
-8268431005047941629
|
idle
|
accessibility
|
NULL
|
Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧ Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧G)
Run and Debug (⇧⌘D)
Remote Explorer
Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update
2
Claude Code
Containers
EXPLORER
EXPLORER
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
SCREENPIPE [SSH: [IP_ADDRESS]]
#recycle
app
__pycache__
consumers
static
.env
cli.py
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
data
pipes
db.sqlite
db.sqlite-shm
db.sqlite-wal
Outline Section
OUTLINE
OUTLINE
Timeline Section
TIMELINE
TIMELINE
pipe.md, Editor Group 1
Untitled-2, Editor Group 1
docker-compose.yml, preview, Editor Group 1
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
Getting started with Cla…, Editor Group 2
Problems (⇧⌘M)
PROBLEMS
Output (⇧⌘U)
OUTPUT
Debug Console (⇧⌘Y)
DEBUG CONSOLE
Terminal (⌃`)
TERMINAL
Ports
PORTS
remote SSH: [IP_ADDRESS]
SSH: [IP_ADDRESS]
No Problems
0
0
No Ports Forwarded
0
Notifications
Sign In
Sign In
Screen Reader Optimized
Info: Setting up SSH Host [IP_ADDRESS]: Setting up SSH tunnel
Command Succeeded
Getting started with Claude agent SDK
Session history
New session
Message actions
how to start it
Thinking
Thinking
Let me check what's in your working directory to understand what you're referring to.
Bash
IN
ls /volume1/screenpipe
Copy code to clipboard
OUT
app
data
db.sqlite
pipes
#recycle
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes
Copy code to clipboard
OUT
cli.py
consumers
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
static
ai-habits
day-recap
meeting-summary
standup-update
time-breakdown
video-export
[rerun: b2]
Read
docker-compose.yml
docker-compose.yml
This is a Screenpipe app with a Docker Compose setup. To start it:
Copy code to clipboard
cd /volume1/screenpipe/app
docker compose up -d
This builds the image (first run) and starts the container in the background
The app will be accessible at
[URL_WITH_CREDENTIALS]
sudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d
Once running, the dashboard will be at
http://your-nas-ip:8766
http://your-nas-ip:8766
and it will query the data you already copied — the database has 6,923 frames and 5,464 OCR records ready to go.
Message actions
docker-compose.yml
docker-compose.yml
I have ugos ugreen nas. I can see the ui but it is empty. No data. Also when I open it there is defsault today, lets make default yesterday.
Thinking
Thinking
Let me check why data isn't showing and look at the frontend.
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT DATE(timestamp) as d, COUNT(*) FROM frames GROUP BY d ORDER BY d DESC LIMIT 10;"
Copy code to clipboard
OUT
2026-04-13|2643
2026-04-12|2455
2026-04-11|1302
2026-04-09|523
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app/static/
Copy code to clipboard
OUT
index.html
[rerun: b2]
Bash
IN
wc -l /volume1/screenpipe/app/static/index.html
Copy code to clipboard
OUT
1048 /volume1/screenpipe/app/static/index.html
[rerun: b3]
Bash...
|
7556
|
|
7558
|
141
|
2
|
2026-04-13T16:03:30.023332+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096210023_m1.jpg...
|
Firefox
|
Screenpipe Dashboard — Personal
|
True
|
http://100.73.206.126:8766
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Screenpipe: Open Source 24/7 Screen & Audio Ca Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
reddit.com
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Close tab
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Close tab
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Screenpipe
Screenpipe
Activity
Search
Audio
Work Report
AI Summary
Date
12
/
04
/
2026
Calendar
Red plus
Search
Source
App
any app
Date
dd
/
mm
/
yyyy
Calendar
(blank = all dates)
From
--
:
--
To
--
:
--
FTS tip: single words work best · "exact phrase" · term1 OR term2
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:2000 GB3000 Gb4000 Gb6000 GB8000 Gb6твwestem...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gbb000 GbSOO0 GHОтвwestemn...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...
18:29 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:29 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:28 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:25 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:23 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:23 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:18 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red...
|
[{"role":"AXStaticText","text& [{"role":"AXStaticText","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":4,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"reddit.com","depth":4,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Inbox - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Shameless • HBO Max","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Shameless • HBO Max","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Mute tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Machines - Tailscale","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Machines - Tailscale","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe Dashboard","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Screenpipe Dashboard","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Pazaruvaj.com — Знак, че е време за най-добрите оферти","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pazaruvaj.com — Знак, че е време за най-добрите оферти","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"google maps timeline export - Google Search","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"google maps timeline export - Google Search","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Screenpipe","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Screenpipe","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Activity","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Search","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Audio","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Work Report","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"AI Summary","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Date","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"12","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"04","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2026","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Calendar","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Red plus","depth":8,"value":"Red plus","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Search","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Source","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"App","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXComboBox","text":"any app","depth":8,"help_text":"","role_description":"combo box","subrole":"AXUnknown","is_enabled":true,"is_focused":true,"is_selected":false},{"role":"AXStaticText","text":"Date","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"dd","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"mm","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"yyyy","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Calendar","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"(blank = all dates)","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"From","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":":","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"To","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":":","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"FTS tip: single words work best · \"exact phrase\" · term1 OR term2","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:39","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:2000 GB3000 Gb4000 Gb6000 GB8000 Gb6твwestem...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:39","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gbb000 GbSOO0 GHОтвwestemn...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:39","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:39","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:29 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...21:19 · iTerm2 / ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...was the cheapest Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...20) ⏺ screenpipe...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:29 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...21:19 · iTerm2 / ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...was the cheapest Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...20) ⏺ screenpipe...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:28 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:26 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:26 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:26 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:25 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:23 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.23055555,"top":0.0,"width":0.016666668,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"bounds":{"left":0.24791667,"top":0.0,"width":0.007638889,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:23 ·","depth":10,"bounds":{"left":0.16388889,"top":0.0,"width":0.02638889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"bounds":{"left":0.19027779,"top":0.0,"width":0.027083334,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"bounds":{"left":0.21736111,"top":0.0,"width":0.13194445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"bounds":{"left":0.16388889,"top":0.0,"width":0.090277776,"height":0.014444444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"bounds":{"left":0.16388889,"top":0.0,"width":0.20069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.36527777,"top":0.0,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.38541666,"top":0.0,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"bounds":{"left":0.40347221,"top":0.0,"width":0.16319445,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5673611,"top":0.0,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.5875,"top":0.0,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"bounds":{"left":0.60625,"top":0.0,"width":0.15069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.7576389,"top":0.0,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.7777778,"top":0.0,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"bounds":{"left":0.16388889,"top":0.0,"width":0.82708335,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.23055555,"top":0.011111111,"width":0.016666668,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"bounds":{"left":0.24791667,"top":0.011111111,"width":0.007638889,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:19 ·","depth":10,"bounds":{"left":0.16388889,"top":0.055555556,"width":0.025694445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"bounds":{"left":0.18958333,"top":0.055555556,"width":0.02638889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"bounds":{"left":0.21597221,"top":0.055555556,"width":0.13263889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"bounds":{"left":0.16388889,"top":0.07444444,"width":0.090277776,"height":0.014444444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"bounds":{"left":0.16388889,"top":0.096666664,"width":0.20069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.36527777,"top":0.096666664,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.38541666,"top":0.096666664,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"bounds":{"left":0.40347221,"top":0.096666664,"width":0.16319445,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5673611,"top":0.096666664,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.5875,"top":0.096666664,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"bounds":{"left":0.60625,"top":0.096666664,"width":0.15069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.7576389,"top":0.096666664,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.7777778,"top":0.096666664,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"bounds":{"left":0.16388889,"top":0.096666664,"width":0.82708335,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.23055555,"top":0.11888889,"width":0.016666668,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"bounds":{"left":0.24791667,"top":0.11888889,"width":0.007638889,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:19 ·","depth":10,"bounds":{"left":0.16388889,"top":0.16333333,"width":0.025694445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"bounds":{"left":0.18958333,"top":0.16333333,"width":0.02638889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"bounds":{"left":0.21597221,"top":0.16333333,"width":0.13263889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"bounds":{"left":0.16388889,"top":0.18222222,"width":0.090277776,"height":0.014444444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"bounds":{"left":0.16388889,"top":0.20444444,"width":0.20069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.36527777,"top":0.20444444,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.38541666,"top":0.20444444,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"bounds":{"left":0.40347221,"top":0.20444444,"width":0.16319445,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5673611,"top":0.20444444,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.5875,"top":0.20444444,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"bounds":{"left":0.60625,"top":0.20444444,"width":0.15069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.7576389,"top":0.20444444,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.7777778,"top":0.20444444,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"bounds":{"left":0.16388889,"top":0.20444444,"width":0.82708335,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.23055555,"top":0.22666667,"width":0.016666668,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"bounds":{"left":0.24791667,"top":0.22666667,"width":0.007638889,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:19 ·","depth":10,"bounds":{"left":0.16388889,"top":0.2711111,"width":0.025694445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"bounds":{"left":0.18958333,"top":0.2711111,"width":0.02638889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"bounds":{"left":0.21597221,"top":0.2711111,"width":0.13263889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"bounds":{"left":0.16388889,"top":0.29,"width":0.090277776,"height":0.014444444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...21:19 · iTerm2 / ⠂ Research Western Digital","depth":10,"bounds":{"left":0.16388889,"top":0.3122222,"width":0.19027779,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.3548611,"top":0.3122222,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.375,"top":0.3122222,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...was the cheapest Western Digital","depth":10,"bounds":{"left":0.39375,"top":0.3122222,"width":0.18402778,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5784722,"top":0.3122222,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.5986111,"top":0.3122222,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital","depth":10,"bounds":{"left":0.6166667,"top":0.3122222,"width":0.26875,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.88611114,"top":0.3122222,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.90625,"top":0.3122222,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...20) ⏺ screenpipe...","depth":10,"bounds":{"left":0.16388889,"top":0.3122222,"width":0.825,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:18 ·","depth":10,"bounds":{"left":0.16388889,"top":0.37888888,"width":0.025694445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"bounds":{"left":0.18958333,"top":0.37888888,"width":0.027083334,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"bounds":{"left":0.21666667,"top":0.37888888,"width":0.13194445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"bounds":{"left":0.16388889,"top":0.39777777,"width":0.090277776,"height":0.014444444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"bounds":{"left":0.16388889,"top":0.42,"width":0.20069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.36527777,"top":0.42,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.38541666,"top":0.42,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"bounds":{"left":0.40347221,"top":0.42,"width":0.16319445,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5673611,"top":0.42,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.5875,"top":0.42,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"bounds":{"left":0.60625,"top":0.42,"width":0.15069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.7576389,"top":0.42,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.7777778,"top":0.42,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"bounds":{"left":0.16388889,"top":0.42,"width":0.82708335,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.23055555,"top":0.4422222,"width":0.016666668,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
6082803353082251206
|
-690450048540606000
|
click
|
accessibility
|
NULL
|
Screenpipe: Open Source 24/7 Screen & Audio Ca Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
reddit.com
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Close tab
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Close tab
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Screenpipe
Screenpipe
Activity
Search
Audio
Work Report
AI Summary
Date
12
/
04
/
2026
Calendar
Red plus
Search
Source
App
any app
Date
dd
/
mm
/
yyyy
Calendar
(blank = all dates)
From
--
:
--
To
--
:
--
FTS tip: single words work best · "exact phrase" · term1 OR term2
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:2000 GB3000 Gb4000 Gb6000 GB8000 Gb6твwestem...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gbb000 GbSOO0 GHОтвwestemn...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...
18:29 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:29 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:28 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:25 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:23 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:23 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:18 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red...
|
NULL
|
|
7559
|
141
|
3
|
2026-04-13T16:03:36.708591+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096216708_m1.jpg...
|
Code
|
Getting started with Cla… — screenpipe [SSH: 100.7 Getting started with Cla… — screenpipe [SSH: 100.73.206.126]...
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧ Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧G)
Run and Debug (⇧⌘D)
Remote Explorer
Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update
2
Claude Code
Containers
EXPLORER
EXPLORER
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
SCREENPIPE [SSH: [IP_ADDRESS]]
#recycle
app
__pycache__
consumers
static
.env
cli.py
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
data
pipes
db.sqlite
db.sqlite-shm
db.sqlite-wal
Outline Section
OUTLINE
OUTLINE
Timeline Section
TIMELINE
TIMELINE
pipe.md, Editor Group 1
Untitled-2, Editor Group 1
docker-compose.yml, preview, Editor Group 1
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
Getting started with Cla…, Editor Group 2
Problems (⇧⌘M)
PROBLEMS
Output (⇧⌘U)
OUTPUT
Debug Console (⇧⌘Y)
DEBUG CONSOLE
Terminal (⌃`)
TERMINAL
Ports
PORTS
remote SSH: [IP_ADDRESS]
SSH: [IP_ADDRESS]
No Problems
0
0
No Ports Forwarded
0
Notifications
Sign In
Sign In
Screen Reader Optimized
Info: Setting up SSH Host [IP_ADDRESS]: Setting up SSH tunnel
Command Succeeded
Getting started with Claude agent SDK
Session history
New session
Message actions
how to start it
Thinking
Thinking
Let me check what's in your working directory to understand what you're referring to.
Bash
IN
ls /volume1/screenpipe
Copy code to clipboard
OUT
app
data
db.sqlite
pipes
#recycle
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes
Copy code to clipboard
OUT
cli.py
consumers
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
static
ai-habits
day-recap
meeting-summary
standup-update
time-breakdown
video-export
[rerun: b2]
Read
docker-compose.yml
docker-compose.yml
This is a Screenpipe app with a Docker Compose setup. To start it:
Copy code to clipboard
cd /volume1/screenpipe/app
docker compose up -d
This builds the image (first run) and starts the container in the background
The app will be accessible at
[URL_WITH_CREDENTIALS]
sudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d
Once running, the dashboard will be at
http://your-nas-ip:8766
http://your-nas-ip:8766
and it will query the data you already copied — the database has 6,923 frames and 5,464 OCR records ready to go.
Message actions
docker-compose.yml
docker-compose.yml
I have ugos ugreen nas. I can see the ui but it is empty. No data. Also when I open it there is defsault today, lets make default yesterday.
Thinking
Thinking
Let me check why data isn't showing and look at the frontend.
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT DATE(timestamp) as d, COUNT(*) FROM frames GROUP BY d ORDER BY d DESC LIMIT 10;"
Copy code to clipboard
OUT
2026-04-13|2643
2026-04-12|2455
2026-04-11|1302
2026-04-09|523
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app/static/
Copy code to clipboard
OUT
index.html
[rerun: b2]
Bash
IN
wc -l /volume1/screenpipe/app/static/index.html
Copy code to clipboard
OUT
1048 /volume1/screenpipe/app/static/index.html
[rerun: b3]
Bash
IN
grep -n "today\|new Date\|date\|default" /volume1/screenpipe/app/static/index.html | head -40
Copy code to clipboard
OUT
24:input[type="date"] {
71:.sess-segment:hover { opacity: 0.8; cursor: default; }
179:button:disabled { opacity: 0.4; cursor: default; }
276: <input type="date" id="datePicker" onchange="refresh()">
336: <select id="sSrc" onchange="updateSourceHint()">
356: <input type="date" id="sDate">
388: <div id="workReportOut"><div class="empty">Click Generate Report to build a structured work summary for the selected date.</div></div>
398: <option value="standup">Standup Update</option>
453:const dp = document.getElementById('datePicker');
454:dp.value = new Date().toISOString().slice(0,10);
525: // Re-render bars to update selection highlight
679: const bucket = Math.floor(new Date(r.timestamp).getTime() / (everyMin * 60000));
710:function updateSourceHint() {
721: updateSourceHint();
797: if (!rows.length) { el.innerHTML = '<div class="empty">No audio for this date.</div>'; return; }
835: try { return new Date(ts).toLocaleTimeString([],{hour:'2-digit',minute:'2-digit'}); }
885: const spanMs = new Date(s.day_end) - new Date(s.day_start);
891: const left = (new Date(seg.start) - new Date(s.day_start)) / spanMs * 100;
892: const width = (new Date(seg.end) - new Date(seg.start)) / spanMs * 100;
899: const left = (new Date(brk.start) - new Date(s.day_start)) / spanMs * 100;
900: const width = (new Date(brk.end) - new Date(brk.start)) / spanMs * 100;
[rerun: b4]
Thinking
Thinking
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT timestamp FROM frames ORDER BY timestamp DESC LIMIT 3; SELECT timestamp FROM frames ORDER BY timestamp ASC LIMIT 3;"
Copy code to clipboard
OUT
2026-04-13T14:19:10.998594+00:00
2026-04-13T14:19:08.686883+00:00
2026-04-13T14:19:06.581255+00:00
2026-04-09T16:53:09.043761+00:00
2026-04-09T16:53:19.073971+00:00
2026-04-09T16:53:20.618409+00:00
[rerun: b5]
Read
index.html
index.html
(lines 451-480)
Thinking
Thinking
Bash
IN
curl -s "http://localhost:8766/api/stats?d=2026-04-13" 2>&1 | head -50
Copy code to clipboard
OUT
{"date":"2026-04-13","total_frames":0,"first_seen":null,"last_seen":null,"unique_apps":0,"audio_segments":0,"ui_events":0}
[rerun: b6]
Thinking
Thinking
Bash
IN
ls /volume1/screenpipe/app/consumers/
Copy code to clipboard
OUT
activity.py
audio.py
elements.py
__init__.py
interactions.py
ocr.py
report.py
summary.py
[rerun: b7]
Read
activity.py
activity.py
Thinking
Thinking
Bash
IN
curl -s "http://localhost:8766/api/activity/apps?d=2026-04-13" 2>&1 | head -20
Copy code to clipboard
OUT
[]
[rerun: b8]
Bash
IN
python3 -c "
from datetime import date, datetime, timedelta, timezone
d = date(2026, 4, 13)
start = datetime(d.year, d.month, d.day, tzinfo=timezone.utc)
end = start + timedelta(days=1)
print('start:', repr(start.isoformat()))
print('end:', repr(end.isoformat()))
"
Copy code to clipboard
OUT
start: '2026-04-13T00:00:00+00:00'
end: '2026-04-14T00:00:00+00:00'
[rerun: b9]
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT COUNT(*) FROM frames WHERE timestamp >= '2026-04-13T00:00:00+00:00' AND timestamp < '2026-04-14T00:00:00+00:00';"
Copy code to clipboard
OUT
2643
[rerun: b10]
Thinking
Thinking
Read
Dockerfile
Dockerfile
Thinking
Thinking
The DB query on the host works fine (2643 frames), but the API inside the container returns 0. The volume mount likely isn't working. Let me test by running the app directly on the host:
Bash
IN
cd /volume1/screenpipe/app && python3 -c "
import sys
sys.path.insert(0, '.')
import os
os.environ['DB_PATH'] = '/volume1/screenpipe/db.sqlite'
# patch db module
import db
db.DB_PATH = '/volume1/screenpipe/db.sqlite'
from consumers.activity import app_time
from datetime import date
result = app_time(date(2026, 4, 13))
print('Result count:', len(result))
print('First:', result[0] if result else 'EMPTY')
" 2>&1
Copy code to clipboard
OUT
Result count: 12
First: {'app_name': 'Boosteroid', 'frame_count': 2292, 'minutes': 76.4}
[rerun: b11]
Thinking
Thinking
The Python code works perfectly with the real data. The Docker container's volume mount isn't reading the DB. The simplest fix for UGREEN NAS is to run the app directly without Docker, since Python is already available.
Let me also fix the default date to yesterday at the same time:
Bash
IN
python3 -c "import pkg_resources; pkgs=['fastapi','uvicorn','python-dotenv']; [print(p, pkg_resources.get_distribution(p).version) for p in pkgs]" 2>&1
Copy code to clipboard
OUT
Exit code 1
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "<string>", line 1, in <listcomp>
File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 514, in get_distribution
dist = get_provider(dist)
^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 386, in get_provider
return working_set.find(moduleOrReq) or require(str(moduleOrReq))[0]
^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 956, in require
needed = self.resolve(parse_requirements(requirements))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 815, in resolve
dist = self._resolve_dist(
^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 856, in _resolve_dist
raise DistributionNotFound(req, requirers)
pkg_resources.DistributionNotFound: The 'fastapi' distribution was not found and is required by the application
[rerun: b12]
Read
index.html
index.html
(lines 452-456)
Thinking
Thinking
Bash
IN
curl -s "http://localhost:8766/api/stats?d=2026-04-12" && echo && curl -s "http://localhost:8766/api/stats?d=2026-04-11"
Copy code to clipboard
OUT
{"date":"2026-04-12","total_frames":0,"first_seen":null,"last_seen":null,"unique_apps":0,"audio_segments":0,"ui_events":0}
{"date":"2026-04-11","total_frames":612,"first_seen":"2026-04-11T11:52:52.056865+00:00","last_seen":"2026-04-11T12:54:42.597794+00:00","unique_apps":6,"audio_segments":0,"ui_events":1344}
[rerun: b13]
Thinking
Thinking
Interesting — the container IS reading a DB, but an older version. The file was replaced after the container started. The container needs to be restarted to re-establish the bind mount. But before that, let me fix the default date to yesterday.
Read...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"Explorer (⇧⌘E)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":true},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Search (⇧⌘F)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Source Control (⌃⇧G)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Run and Debug (⇧⌘D)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Remote Explorer","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"2","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Claude Code","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Containers","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"EXPLORER","depth":17,"role_description":"heading"},{"role":"AXStaticText","text":"EXPLORER","depth":18,"role_description":"text"},{"role":"AXButton","text":"Explorer Section: screenpipe [SSH: 100.73.206.126]","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"Explorer Section: screenpipe [SSH: 100.73.206.126]","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"SCREENPIPE [SSH: 100.73.206.126]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"#recycle","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"app","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"__pycache__","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"consumers","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"static","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"cli.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"docker-compose.yml","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"Dockerfile","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"main.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"requirements.txt","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"data","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"pipes","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite-shm","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite-wal","depth":27,"role_description":"text"},{"role":"AXButton","text":"Outline Section","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"OUTLINE","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"OUTLINE","depth":23,"role_description":"text"},{"role":"AXButton","text":"Timeline Section","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"TIMELINE","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"TIMELINE","depth":23,"role_description":"text"},{"role":"AXRadioButton","text":"pipe.md, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Untitled-2, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"docker-compose.yml, preview, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXStaticText","text":"","depth":29,"role_description":"text"},{"role":"AXTextArea","text":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","depth":28,"value":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","role_description":"editor","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","depth":29,"role_description":"text"},{"role":"AXRadioButton","text":"Getting started with Cla…, Editor Group 2","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXRadioButton","text":"Problems (⇧⌘M)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"PROBLEMS","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Output (⇧⌘U)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUTPUT","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Debug Console (⇧⌘Y)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"DEBUG CONSOLE","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Terminal (⌃`)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":true},{"role":"AXStaticText","text":"TERMINAL","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Ports","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"PORTS","depth":24,"role_description":"text"},{"role":"AXButton","text":"remote SSH: 100.73.206.126","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"SSH: 100.73.206.126","depth":17,"role_description":"text"},{"role":"AXButton","text":"No Problems","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXButton","text":"No Ports Forwarded","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXButton","text":"Notifications","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sign In","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"Sign In","depth":17,"role_description":"text"},{"role":"AXButton","text":"Screen Reader Optimized","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Info: Setting up SSH Host 100.73.206.126: Setting up SSH tunnel","depth":12,"role_description":"text"},{"role":"AXStaticText","text":"Command Succeeded","depth":12,"role_description":"text"},{"role":"AXButton","text":"Getting started with Claude agent SDK","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Session history","depth":18,"help_text":"Session history","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New session","depth":18,"help_text":"New session","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"how to start it","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Let me check what's in your working directory to understand what you're referring to.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"app\ndata\ndb.sqlite\npipes\n#recycle\n[rerun: b1]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"cli.py\nconsumers\ndb.py\ndocker-compose.yml\nDockerfile\nmain.py\nrequirements.txt\nstatic\nai-habits\nday-recap\nmeeting-summary\nstandup-update\ntime-breakdown\nvideo-export\n[rerun: b2]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"docker-compose.yml","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker-compose.yml","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"This is a Screenpipe app with a Docker Compose setup. To start it:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app\ndocker compose up -d","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"This builds the image (first run) and starts the container in the background","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"The app will be accessible at","depth":23,"role_description":"text"},{"role":"AXLink","text":"http://your-server-ip:8766","depth":24,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"http://your-server-ip:8766","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"To check if it's running:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker compose ps","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"To view logs:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker compose logs -f","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Make sure an","depth":22,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"file exists in","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"before starting — the compose file references one (","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"env_file: .env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"). If it's missing, the container will fail to start.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app/.env 2>/dev/null && echo \"exists\" || echo \"MISSING\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/.env\nexists\n[rerun: b3]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"The","depth":22,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"file exists, so you're good to go. Just run:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app && docker compose up -d","depth":24,"role_description":"text"},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"docker-compose.yml","depth":22,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker-compose.yml","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"I opened it but there are no data after I coppied it there. the idea behind this app is to have the data pasted form screenpipe mac app and only query it and work with it","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Let me check the current state of the data.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls -lh /volume1/screenpipe/db.sqlite && ls /volume1/screenpipe/data/ | head -20","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"-rwxrwxrwx 1 Adm1n admin 423M Apr 13 17:20 /volume1/screenpipe/db.sqlite\n2026-04-09\n2026-04-11\n2026-04-12\n[rerun: b1]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \".tables\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"_sqlx_migrations meetings \naudio_chunks memories \naudio_tags memories_fts \naudio_transcriptions memories_fts_config \naudio_transcriptions_fts memories_fts_data \naudio_transcriptions_fts_config memories_fts_docsize \naudio_transcriptions_fts_data memories_fts_idx \naudio_transcriptions_fts_docsize ocr_text \naudio_transcriptions_fts_idx pipe_executions \nelements pipe_scheduler_state \nelements_fts speaker_embeddings \nelements_fts_config speakers \nelements_fts_data tags \nelements_fts_docsize ui_events \nelements_fts_idx ui_events_fts \nframes ui_events_fts_config \nframes_fts ui_events_fts_data \nframes_fts_config ui_events_fts_docsize \nframes_fts_content ui_events_fts_idx \nframes_fts_data video_chunks \nframes_fts_docsize vision_tags \nframes_fts_idx\n[rerun: b2]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \"SELECT COUNT(*) FROM frames; SELECT COUNT(*) FROM ocr_text; SELECT COUNT(*) FROM audio_transcriptions;\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"6923\n5464\n3\n[rerun: b3]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"The data is there — 423MB database with 6,923 frames and 5,464 OCR records. The app just isn't running yet. Let me check what the app actually does and whether it can query this data properly.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"main.py","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"main.py","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"db.py","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"db.py","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"The data is actually there — the database has 423MB of data. The app just needs to be started. Let me start it:","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app && docker compose up -d 2>&1","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Exit code 1\npermission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Get \"http://%2Fvar%2Frun%2Fdocker.sock/v1.45/containers/json?all=1&filters=%7B%22label%22%3A%7B%22com.docker.compose.config-hash%22%3Atrue%2C%22com.docker.compose.project%3Dapp%22%3Atrue%7D%7D\": dial unix /var/run/docker.sock: connect: permission denied\n[rerun: b4]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d 2>&1","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Exit code 1\nsudo: a terminal is required to read the password; either use the -S option to read from standard input or configure an askpass helper\nsudo: a password is required\n[rerun: b5]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"groups && id","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"admin users ughomeusers Media Social\nuid=1000(Adm1n) gid=10(admin) groups=10(admin),100(users),133(ughomeusers),1001(Media),1002(Social)\n[rerun: b6]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"You need to run Docker with elevated privileges. You're not in the","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"docker","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"group. There are two options:","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Option 1 — Run via Synology's Container Manager (DSM GUI)","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Open DSM → Container Manager → Project → Create project → point it to","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/docker-compose.yml","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Option 2 — Add yourself to the docker group (requires admin/root once)","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Open an SSH terminal as root (or via DSM terminal with admin):","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"sudo synogroup --add docker Adm1n\n# then log out and back in, then:\ncd /volume1/screenpipe/app && docker compose up -d","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Option 3 — Run it directly from an SSH session with sudo","depth":23,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"ssh admin@your-nas-ip\nsudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Once running, the dashboard will be at","depth":22,"role_description":"text"},{"role":"AXLink","text":"http://your-nas-ip:8766","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"http://your-nas-ip:8766","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"and it will query the data you already copied — the database has 6,923 frames and 5,464 OCR records ready to go.","depth":22,"role_description":"text"},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"docker-compose.yml","depth":22,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker-compose.yml","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"I have ugos ugreen nas. I can see the ui but it is empty. No data. Also when I open it there is defsault today, lets make default yesterday.","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Let me check why data isn't showing and look at the frontend.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \"SELECT DATE(timestamp) as d, COUNT(*) FROM frames GROUP BY d ORDER BY d DESC LIMIT 10;\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"2026-04-13|2643\n2026-04-12|2455\n2026-04-11|1302\n2026-04-09|523\n[rerun: b1]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app/static/","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"index.html\n[rerun: b2]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"wc -l /volume1/screenpipe/app/static/index.html","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"1048 /volume1/screenpipe/app/static/index.html\n[rerun: b3]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"grep -n \"today\\|new Date\\|date\\|default\" /volume1/screenpipe/app/static/index.html | head -40","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"24:input[type=\"date\"] {\n71:.sess-segment:hover { opacity: 0.8; cursor: default; }\n179:button:disabled { opacity: 0.4; cursor: default; }\n276: <input type=\"date\" id=\"datePicker\" onchange=\"refresh()\">\n336: <select id=\"sSrc\" onchange=\"updateSourceHint()\">\n356: <input type=\"date\" id=\"sDate\">\n388: <div id=\"workReportOut\"><div class=\"empty\">Click Generate Report to build a structured work summary for the selected date.</div></div>\n398: <option value=\"standup\">Standup Update</option>\n453:const dp = document.getElementById('datePicker');\n454:dp.value = new Date().toISOString().slice(0,10);\n525: // Re-render bars to update selection highlight\n679: const bucket = Math.floor(new Date(r.timestamp).getTime() / (everyMin * 60000));\n710:function updateSourceHint() {\n721: updateSourceHint();\n797: if (!rows.length) { el.innerHTML = '<div class=\"empty\">No audio for this date.</div>'; return; }\n835: try { return new Date(ts).toLocaleTimeString([],{hour:'2-digit',minute:'2-digit'}); }\n885: const spanMs = new Date(s.day_end) - new Date(s.day_start);\n891: const left = (new Date(seg.start) - new Date(s.day_start)) / spanMs * 100;\n892: const width = (new Date(seg.end) - new Date(seg.start)) / spanMs * 100;\n899: const left = (new Date(brk.start) - new Date(s.day_start)) / spanMs * 100;\n900: const width = (new Date(brk.end) - new Date(brk.start)) / spanMs * 100;\n[rerun: b4]","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \"SELECT timestamp FROM frames ORDER BY timestamp DESC LIMIT 3; SELECT timestamp FROM frames ORDER BY timestamp ASC LIMIT 3;\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"2026-04-13T14:19:10.998594+00:00\n2026-04-13T14:19:08.686883+00:00\n2026-04-13T14:19:06.581255+00:00\n2026-04-09T16:53:09.043761+00:00\n2026-04-09T16:53:19.073971+00:00\n2026-04-09T16:53:20.618409+00:00\n[rerun: b5]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"index.html","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"index.html","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"(lines 451-480)","depth":23,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"curl -s \"http://localhost:8766/api/stats?d=2026-04-13\" 2>&1 | head -50","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"{\"date\":\"2026-04-13\",\"total_frames\":0,\"first_seen\":null,\"last_seen\":null,\"unique_apps\":0,\"audio_segments\":0,\"ui_events\":0}\n[rerun: b6]","depth":23,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app/consumers/","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"activity.py\naudio.py\nelements.py\n__init__.py\ninteractions.py\nocr.py\nreport.py\nsummary.py\n[rerun: b7]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"activity.py","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"activity.py","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"curl -s \"http://localhost:8766/api/activity/apps?d=2026-04-13\" 2>&1 | head -20","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"[]\n[rerun: b8]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"python3 -c \"\nfrom datetime import date, datetime, timedelta, timezone\nd = date(2026, 4, 13)\nstart = datetime(d.year, d.month, d.day, tzinfo=timezone.utc)\nend = start + timedelta(days=1)\nprint('start:', repr(start.isoformat()))\nprint('end:', repr(end.isoformat()))\n\"","depth":25,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"start: '2026-04-13T00:00:00+00:00'\nend: '2026-04-14T00:00:00+00:00'\n[rerun: b9]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \"SELECT COUNT(*) FROM frames WHERE timestamp >= '2026-04-13T00:00:00+00:00' AND timestamp < '2026-04-14T00:00:00+00:00';\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"2643\n[rerun: b10]","depth":23,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"Dockerfile","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Dockerfile","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"The DB query on the host works fine (2643 frames), but the API inside the container returns 0. The volume mount likely isn't working. Let me test by running the app directly on the host:","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app && python3 -c \"\nimport sys\nsys.path.insert(0, '.')\nimport os\nos.environ['DB_PATH'] = '/volume1/screenpipe/db.sqlite'\n\n# patch db module\nimport db\ndb.DB_PATH = '/volume1/screenpipe/db.sqlite'\n\nfrom consumers.activity import app_time\nfrom datetime import date\nresult = app_time(date(2026, 4, 13))\nprint('Result count:', len(result))\nprint('First:', result[0] if result else 'EMPTY')\n\" 2>&1","depth":25,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Result count: 12\nFirst: {'app_name': 'Boosteroid', 'frame_count': 2292, 'minutes': 76.4}\n[rerun: b11]","depth":23,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"The Python code works perfectly with the real data. The Docker container's volume mount isn't reading the DB. The simplest fix for UGREEN NAS is to run the app directly without Docker, since Python is already available.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Let me also fix the default date to yesterday at the same time:","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"python3 -c \"import pkg_resources; pkgs=['fastapi','uvicorn','python-dotenv']; [print(p, pkg_resources.get_distribution(p).version) for p in pkgs]\" 2>&1","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Exit code 1\nTraceback (most recent call last):\n File \"<string>\", line 1, in <module>\n File \"<string>\", line 1, in <listcomp>\n File \"/usr/lib/python3/dist-packages/pkg_resources/__init__.py\", line 514, in get_distribution\n dist = get_provider(dist)\n ^^^^^^^^^^^^^^^^^^\n File \"/usr/lib/python3/dist-packages/pkg_resources/__init__.py\", line 386, in get_provider\n return working_set.find(moduleOrReq) or require(str(moduleOrReq))[0]\n ^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/lib/python3/dist-packages/pkg_resources/__init__.py\", line 956, in require\n needed = self.resolve(parse_requirements(requirements))\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/lib/python3/dist-packages/pkg_resources/__init__.py\", line 815, in resolve\n dist = self._resolve_dist(\n ^^^^^^^^^^^^^^^^^^^\n File \"/usr/lib/python3/dist-packages/pkg_resources/__init__.py\", line 856, in _resolve_dist\n raise DistributionNotFound(req, requirers)\npkg_resources.DistributionNotFound: The 'fastapi' distribution was not found and is required by the application\n[rerun: b12]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"index.html","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"index.html","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"(lines 452-456)","depth":23,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"curl -s \"http://localhost:8766/api/stats?d=2026-04-12\" && echo && curl -s \"http://localhost:8766/api/stats?d=2026-04-11\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"{\"date\":\"2026-04-12\",\"total_frames\":0,\"first_seen\":null,\"last_seen\":null,\"unique_apps\":0,\"audio_segments\":0,\"ui_events\":0}\n{\"date\":\"2026-04-11\",\"total_frames\":612,\"first_seen\":\"2026-04-11T11:52:52.056865+00:00\",\"last_seen\":\"2026-04-11T12:54:42.597794+00:00\",\"unique_apps\":6,\"audio_segments\":0,\"ui_events\":1344}\n[rerun: b13]","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Interesting — the container IS reading a DB, but an older version. The file was replaced after the container started. The container needs to be restarted to re-establish the bind mount. But before that, let me fix the default date to yesterday.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"}]...
|
-3228716184880586225
|
-8267851012966279485
|
clipboard
|
accessibility
|
NULL
|
Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧ Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧G)
Run and Debug (⇧⌘D)
Remote Explorer
Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update
2
Claude Code
Containers
EXPLORER
EXPLORER
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
SCREENPIPE [SSH: [IP_ADDRESS]]
#recycle
app
__pycache__
consumers
static
.env
cli.py
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
data
pipes
db.sqlite
db.sqlite-shm
db.sqlite-wal
Outline Section
OUTLINE
OUTLINE
Timeline Section
TIMELINE
TIMELINE
pipe.md, Editor Group 1
Untitled-2, Editor Group 1
docker-compose.yml, preview, Editor Group 1
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
Getting started with Cla…, Editor Group 2
Problems (⇧⌘M)
PROBLEMS
Output (⇧⌘U)
OUTPUT
Debug Console (⇧⌘Y)
DEBUG CONSOLE
Terminal (⌃`)
TERMINAL
Ports
PORTS
remote SSH: [IP_ADDRESS]
SSH: [IP_ADDRESS]
No Problems
0
0
No Ports Forwarded
0
Notifications
Sign In
Sign In
Screen Reader Optimized
Info: Setting up SSH Host [IP_ADDRESS]: Setting up SSH tunnel
Command Succeeded
Getting started with Claude agent SDK
Session history
New session
Message actions
how to start it
Thinking
Thinking
Let me check what's in your working directory to understand what you're referring to.
Bash
IN
ls /volume1/screenpipe
Copy code to clipboard
OUT
app
data
db.sqlite
pipes
#recycle
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes
Copy code to clipboard
OUT
cli.py
consumers
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
static
ai-habits
day-recap
meeting-summary
standup-update
time-breakdown
video-export
[rerun: b2]
Read
docker-compose.yml
docker-compose.yml
This is a Screenpipe app with a Docker Compose setup. To start it:
Copy code to clipboard
cd /volume1/screenpipe/app
docker compose up -d
This builds the image (first run) and starts the container in the background
The app will be accessible at
[URL_WITH_CREDENTIALS]
sudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d
Once running, the dashboard will be at
http://your-nas-ip:8766
http://your-nas-ip:8766
and it will query the data you already copied — the database has 6,923 frames and 5,464 OCR records ready to go.
Message actions
docker-compose.yml
docker-compose.yml
I have ugos ugreen nas. I can see the ui but it is empty. No data. Also when I open it there is defsault today, lets make default yesterday.
Thinking
Thinking
Let me check why data isn't showing and look at the frontend.
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT DATE(timestamp) as d, COUNT(*) FROM frames GROUP BY d ORDER BY d DESC LIMIT 10;"
Copy code to clipboard
OUT
2026-04-13|2643
2026-04-12|2455
2026-04-11|1302
2026-04-09|523
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app/static/
Copy code to clipboard
OUT
index.html
[rerun: b2]
Bash
IN
wc -l /volume1/screenpipe/app/static/index.html
Copy code to clipboard
OUT
1048 /volume1/screenpipe/app/static/index.html
[rerun: b3]
Bash
IN
grep -n "today\|new Date\|date\|default" /volume1/screenpipe/app/static/index.html | head -40
Copy code to clipboard
OUT
24:input[type="date"] {
71:.sess-segment:hover { opacity: 0.8; cursor: default; }
179:button:disabled { opacity: 0.4; cursor: default; }
276: <input type="date" id="datePicker" onchange="refresh()">
336: <select id="sSrc" onchange="updateSourceHint()">
356: <input type="date" id="sDate">
388: <div id="workReportOut"><div class="empty">Click Generate Report to build a structured work summary for the selected date.</div></div>
398: <option value="standup">Standup Update</option>
453:const dp = document.getElementById('datePicker');
454:dp.value = new Date().toISOString().slice(0,10);
525: // Re-render bars to update selection highlight
679: const bucket = Math.floor(new Date(r.timestamp).getTime() / (everyMin * 60000));
710:function updateSourceHint() {
721: updateSourceHint();
797: if (!rows.length) { el.innerHTML = '<div class="empty">No audio for this date.</div>'; return; }
835: try { return new Date(ts).toLocaleTimeString([],{hour:'2-digit',minute:'2-digit'}); }
885: const spanMs = new Date(s.day_end) - new Date(s.day_start);
891: const left = (new Date(seg.start) - new Date(s.day_start)) / spanMs * 100;
892: const width = (new Date(seg.end) - new Date(seg.start)) / spanMs * 100;
899: const left = (new Date(brk.start) - new Date(s.day_start)) / spanMs * 100;
900: const width = (new Date(brk.end) - new Date(brk.start)) / spanMs * 100;
[rerun: b4]
Thinking
Thinking
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT timestamp FROM frames ORDER BY timestamp DESC LIMIT 3; SELECT timestamp FROM frames ORDER BY timestamp ASC LIMIT 3;"
Copy code to clipboard
OUT
2026-04-13T14:19:10.998594+00:00
2026-04-13T14:19:08.686883+00:00
2026-04-13T14:19:06.581255+00:00
2026-04-09T16:53:09.043761+00:00
2026-04-09T16:53:19.073971+00:00
2026-04-09T16:53:20.618409+00:00
[rerun: b5]
Read
index.html
index.html
(lines 451-480)
Thinking
Thinking
Bash
IN
curl -s "http://localhost:8766/api/stats?d=2026-04-13" 2>&1 | head -50
Copy code to clipboard
OUT
{"date":"2026-04-13","total_frames":0,"first_seen":null,"last_seen":null,"unique_apps":0,"audio_segments":0,"ui_events":0}
[rerun: b6]
Thinking
Thinking
Bash
IN
ls /volume1/screenpipe/app/consumers/
Copy code to clipboard
OUT
activity.py
audio.py
elements.py
__init__.py
interactions.py
ocr.py
report.py
summary.py
[rerun: b7]
Read
activity.py
activity.py
Thinking
Thinking
Bash
IN
curl -s "http://localhost:8766/api/activity/apps?d=2026-04-13" 2>&1 | head -20
Copy code to clipboard
OUT
[]
[rerun: b8]
Bash
IN
python3 -c "
from datetime import date, datetime, timedelta, timezone
d = date(2026, 4, 13)
start = datetime(d.year, d.month, d.day, tzinfo=timezone.utc)
end = start + timedelta(days=1)
print('start:', repr(start.isoformat()))
print('end:', repr(end.isoformat()))
"
Copy code to clipboard
OUT
start: '2026-04-13T00:00:00+00:00'
end: '2026-04-14T00:00:00+00:00'
[rerun: b9]
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT COUNT(*) FROM frames WHERE timestamp >= '2026-04-13T00:00:00+00:00' AND timestamp < '2026-04-14T00:00:00+00:00';"
Copy code to clipboard
OUT
2643
[rerun: b10]
Thinking
Thinking
Read
Dockerfile
Dockerfile
Thinking
Thinking
The DB query on the host works fine (2643 frames), but the API inside the container returns 0. The volume mount likely isn't working. Let me test by running the app directly on the host:
Bash
IN
cd /volume1/screenpipe/app && python3 -c "
import sys
sys.path.insert(0, '.')
import os
os.environ['DB_PATH'] = '/volume1/screenpipe/db.sqlite'
# patch db module
import db
db.DB_PATH = '/volume1/screenpipe/db.sqlite'
from consumers.activity import app_time
from datetime import date
result = app_time(date(2026, 4, 13))
print('Result count:', len(result))
print('First:', result[0] if result else 'EMPTY')
" 2>&1
Copy code to clipboard
OUT
Result count: 12
First: {'app_name': 'Boosteroid', 'frame_count': 2292, 'minutes': 76.4}
[rerun: b11]
Thinking
Thinking
The Python code works perfectly with the real data. The Docker container's volume mount isn't reading the DB. The simplest fix for UGREEN NAS is to run the app directly without Docker, since Python is already available.
Let me also fix the default date to yesterday at the same time:
Bash
IN
python3 -c "import pkg_resources; pkgs=['fastapi','uvicorn','python-dotenv']; [print(p, pkg_resources.get_distribution(p).version) for p in pkgs]" 2>&1
Copy code to clipboard
OUT
Exit code 1
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "<string>", line 1, in <listcomp>
File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 514, in get_distribution
dist = get_provider(dist)
^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 386, in get_provider
return working_set.find(moduleOrReq) or require(str(moduleOrReq))[0]
^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 956, in require
needed = self.resolve(parse_requirements(requirements))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 815, in resolve
dist = self._resolve_dist(
^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 856, in _resolve_dist
raise DistributionNotFound(req, requirers)
pkg_resources.DistributionNotFound: The 'fastapi' distribution was not found and is required by the application
[rerun: b12]
Read
index.html
index.html
(lines 452-456)
Thinking
Thinking
Bash
IN
curl -s "http://localhost:8766/api/stats?d=2026-04-12" && echo && curl -s "http://localhost:8766/api/stats?d=2026-04-11"
Copy code to clipboard
OUT
{"date":"2026-04-12","total_frames":0,"first_seen":null,"last_seen":null,"unique_apps":0,"audio_segments":0,"ui_events":0}
{"date":"2026-04-11","total_frames":612,"first_seen":"2026-04-11T11:52:52.056865+00:00","last_seen":"2026-04-11T12:54:42.597794+00:00","unique_apps":6,"audio_segments":0,"ui_events":1344}
[rerun: b13]
Thinking
Thinking
Interesting — the container IS reading a DB, but an older version. The file was replaced after the container started. The container needs to be restarted to re-establish the bind mount. But before that, let me fix the default date to yesterday.
Read...
|
7558
|
|
7562
|
141
|
6
|
2026-04-13T16:04:09.018169+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096249018_m1.jpg...
|
Code
|
Getting started with Cla… — screenpipe [SSH: 100.7 Getting started with Cla… — screenpipe [SSH: 100.73.206.126]...
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧ Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧G)
Run and Debug (⇧⌘D)
Remote Explorer
Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update
2
Claude Code
Containers
EXPLORER
EXPLORER
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
SCREENPIPE [SSH: [IP_ADDRESS]]
#recycle
app
__pycache__
consumers
static
.env
cli.py
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
data
pipes
db.sqlite
db.sqlite-shm
db.sqlite-wal
Outline Section
OUTLINE
OUTLINE
Timeline Section
TIMELINE
TIMELINE
pipe.md, Editor Group 1
Untitled-2, Editor Group 1
docker-compose.yml, preview, Editor Group 1
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
Getting started with Cla…, Editor Group 2
Problems (⇧⌘M)
PROBLEMS
Output (⇧⌘U)
OUTPUT
Debug Console (⇧⌘Y)
DEBUG CONSOLE
Terminal (⌃`)
TERMINAL
Ports
PORTS
remote SSH: [IP_ADDRESS]
SSH: [IP_ADDRESS]
No Problems
0
0
No Ports Forwarded
0
Notifications
Sign In
Sign In
Screen Reader Optimized
Info: Setting up SSH Host [IP_ADDRESS]: Setting up SSH tunnel
Command Succeeded
Getting started with Claude agent SDK
Session history
New session
Message actions
how to start it
Thinking
Thinking
Let me check what's in your working directory to understand what you're referring to.
Bash
IN
ls /volume1/screenpipe
Copy code to clipboard
OUT
app
data
db.sqlite
pipes
#recycle
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes
Copy code to clipboard
OUT
cli.py
consumers
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
static
ai-habits
day-recap
meeting-summary
standup-update
time-breakdown
video-export
[rerun: b2]
Read
docker-compose.yml
docker-compose.yml
This is a Screenpipe app with a Docker Compose setup. To start it:
Copy code to clipboard
cd /volume1/screenpipe/app
docker compose up -d
This builds the image (first run) and starts the container in the background
The app will be accessible at
[URL_WITH_CREDENTIALS]
sudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d
Once running, the dashboard will be at
http://your-nas-ip:8766
http://your-nas-ip:8766
and it will query the data you already copied — the database has 6,923 frames and 5,464 OCR records ready to go.
Message actions
docker-compose.yml
docker-compose.yml
I have ugos ugreen nas. I can see the ui but it is empty. No data. Also when I open it there is defsault today, lets make default yesterday.
Thinking
Thinking
Let me check why data isn't showing and look at the frontend.
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT DATE(timestamp) as d, COUNT(*) FROM frames GROUP BY d ORDER BY d DESC LIMIT 10;"
Copy code to clipboard
OUT
2026-04-13|2643
2026-04-12|2455
2026-04-11|1302
2026-04-09|523
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app/static/
Copy code to clipboard
OUT
index.html
[rerun: b2]
Bash
IN
wc -l /volume1/screenpipe/app/static/index.html
Copy code to clipboard
OUT
1048 /volume1/screenpipe/app/static/index.html
[rerun: b3]
Bash
IN
grep -n "today\|new Date\|date\|default" /volume1/screenpipe/app/static/index.html | head -40
Copy code to clipboard
OUT
24:input[type="date"] {
71:.sess-segment:hover { opacity: 0.8; cursor: default; }
179:button:disabled { opacity: 0.4; cursor: default; }
276: <input type="date" id="datePicker" onchange="refresh()">
336: <select id="sSrc" onchange="updateSourceHint()">
356: <input type="date" id="sDate">
388: <div id="workReportOut"><div class="empty">Click Generate Report to build a structured work summary for the selected date.</div></div>
398: <option value="standup">Standup Update</option>
453:const dp = document.getElementById('datePicker');
454:dp.value = new Date().toISOString().slice(0,10);
525: // Re-render bars to update selection highlight
679: const bucket = Math.floor(new Date(r.timestamp).getTime() / (everyMin * 60000));
710:function updateSourceHint() {
721: updateSourceHint();
797: if (!rows.length) { el.innerHTML = '<div class="empty">No audio for this date.</div>'; return; }
835: try { return new Date(ts).toLocaleTimeString([],{hour:'2-digit',minute:'2-digit'}); }
885: const spanMs = new Date(s.day_end) - new Date(s.day_start);
891: const left = (new Date(seg.start) - new Date(s.day_start)) / spanMs * 100;
892: const width = (new Date(seg.end) - new Date(seg.start)) / spanMs * 100;
899: const left = (new Date(brk.start) - new Date(s.day_start)) / spanMs * 100;
900: const width = (new Date(brk.end) - new Date(brk.start)) / spanMs * 100;
[rerun: b4]
Thinking
Thinking
Bash...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"Explorer (⇧⌘E)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":true},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Search (⇧⌘F)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Source Control (⌃⇧G)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Run and Debug (⇧⌘D)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Remote Explorer","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"2","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Claude Code","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Containers","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"EXPLORER","depth":17,"role_description":"heading"},{"role":"AXStaticText","text":"EXPLORER","depth":18,"role_description":"text"},{"role":"AXButton","text":"Explorer Section: screenpipe [SSH: 100.73.206.126]","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"Explorer Section: screenpipe [SSH: 100.73.206.126]","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"SCREENPIPE [SSH: 100.73.206.126]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"#recycle","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"app","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"__pycache__","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"consumers","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"static","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"cli.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"docker-compose.yml","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"Dockerfile","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"main.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"requirements.txt","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"data","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"pipes","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite-shm","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite-wal","depth":27,"role_description":"text"},{"role":"AXButton","text":"Outline Section","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"OUTLINE","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"OUTLINE","depth":23,"role_description":"text"},{"role":"AXButton","text":"Timeline Section","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"TIMELINE","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"TIMELINE","depth":23,"role_description":"text"},{"role":"AXRadioButton","text":"pipe.md, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Untitled-2, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"docker-compose.yml, preview, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXStaticText","text":"","depth":29,"role_description":"text"},{"role":"AXTextArea","text":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","depth":28,"value":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","role_description":"editor","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","depth":29,"role_description":"text"},{"role":"AXRadioButton","text":"Getting started with Cla…, Editor Group 2","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXRadioButton","text":"Problems (⇧⌘M)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"PROBLEMS","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Output (⇧⌘U)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUTPUT","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Debug Console (⇧⌘Y)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"DEBUG CONSOLE","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Terminal (⌃`)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":true},{"role":"AXStaticText","text":"TERMINAL","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Ports","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"PORTS","depth":24,"role_description":"text"},{"role":"AXButton","text":"remote SSH: 100.73.206.126","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"SSH: 100.73.206.126","depth":17,"role_description":"text"},{"role":"AXButton","text":"No Problems","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXButton","text":"No Ports Forwarded","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXButton","text":"Notifications","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sign In","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"Sign In","depth":17,"role_description":"text"},{"role":"AXButton","text":"Screen Reader Optimized","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Info: Setting up SSH Host 100.73.206.126: Setting up SSH tunnel","depth":12,"role_description":"text"},{"role":"AXStaticText","text":"Command Succeeded","depth":12,"role_description":"text"},{"role":"AXButton","text":"Getting started with Claude agent SDK","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Session history","depth":18,"help_text":"Session history","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New session","depth":18,"help_text":"New session","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"how to start it","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Let me check what's in your working directory to understand what you're referring to.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"app\ndata\ndb.sqlite\npipes\n#recycle\n[rerun: b1]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"cli.py\nconsumers\ndb.py\ndocker-compose.yml\nDockerfile\nmain.py\nrequirements.txt\nstatic\nai-habits\nday-recap\nmeeting-summary\nstandup-update\ntime-breakdown\nvideo-export\n[rerun: b2]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"docker-compose.yml","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker-compose.yml","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"This is a Screenpipe app with a Docker Compose setup. To start it:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app\ndocker compose up -d","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"This builds the image (first run) and starts the container in the background","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"The app will be accessible at","depth":23,"role_description":"text"},{"role":"AXLink","text":"http://your-server-ip:8766","depth":24,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"http://your-server-ip:8766","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"To check if it's running:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker compose ps","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"To view logs:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker compose logs -f","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Make sure an","depth":22,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"file exists in","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"before starting — the compose file references one (","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"env_file: .env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"). If it's missing, the container will fail to start.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app/.env 2>/dev/null && echo \"exists\" || echo \"MISSING\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/.env\nexists\n[rerun: b3]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"The","depth":22,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"file exists, so you're good to go. Just run:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app && docker compose up -d","depth":24,"role_description":"text"},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"docker-compose.yml","depth":22,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker-compose.yml","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"I opened it but there are no data after I coppied it there. the idea behind this app is to have the data pasted form screenpipe mac app and only query it and work with it","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Let me check the current state of the data.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls -lh /volume1/screenpipe/db.sqlite && ls /volume1/screenpipe/data/ | head -20","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"-rwxrwxrwx 1 Adm1n admin 423M Apr 13 17:20 /volume1/screenpipe/db.sqlite\n2026-04-09\n2026-04-11\n2026-04-12\n[rerun: b1]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \".tables\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"_sqlx_migrations meetings \naudio_chunks memories \naudio_tags memories_fts \naudio_transcriptions memories_fts_config \naudio_transcriptions_fts memories_fts_data \naudio_transcriptions_fts_config memories_fts_docsize \naudio_transcriptions_fts_data memories_fts_idx \naudio_transcriptions_fts_docsize ocr_text \naudio_transcriptions_fts_idx pipe_executions \nelements pipe_scheduler_state \nelements_fts speaker_embeddings \nelements_fts_config speakers \nelements_fts_data tags \nelements_fts_docsize ui_events \nelements_fts_idx ui_events_fts \nframes ui_events_fts_config \nframes_fts ui_events_fts_data \nframes_fts_config ui_events_fts_docsize \nframes_fts_content ui_events_fts_idx \nframes_fts_data video_chunks \nframes_fts_docsize vision_tags \nframes_fts_idx\n[rerun: b2]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \"SELECT COUNT(*) FROM frames; SELECT COUNT(*) FROM ocr_text; SELECT COUNT(*) FROM audio_transcriptions;\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"6923\n5464\n3\n[rerun: b3]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"The data is there — 423MB database with 6,923 frames and 5,464 OCR records. The app just isn't running yet. Let me check what the app actually does and whether it can query this data properly.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"main.py","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"main.py","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"db.py","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"db.py","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"The data is actually there — the database has 423MB of data. The app just needs to be started. Let me start it:","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app && docker compose up -d 2>&1","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Exit code 1\npermission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Get \"http://%2Fvar%2Frun%2Fdocker.sock/v1.45/containers/json?all=1&filters=%7B%22label%22%3A%7B%22com.docker.compose.config-hash%22%3Atrue%2C%22com.docker.compose.project%3Dapp%22%3Atrue%7D%7D\": dial unix /var/run/docker.sock: connect: permission denied\n[rerun: b4]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d 2>&1","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Exit code 1\nsudo: a terminal is required to read the password; either use the -S option to read from standard input or configure an askpass helper\nsudo: a password is required\n[rerun: b5]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"groups && id","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"admin users ughomeusers Media Social\nuid=1000(Adm1n) gid=10(admin) groups=10(admin),100(users),133(ughomeusers),1001(Media),1002(Social)\n[rerun: b6]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"You need to run Docker with elevated privileges. You're not in the","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"docker","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"group. There are two options:","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Option 1 — Run via Synology's Container Manager (DSM GUI)","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Open DSM → Container Manager → Project → Create project → point it to","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/docker-compose.yml","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Option 2 — Add yourself to the docker group (requires admin/root once)","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Open an SSH terminal as root (or via DSM terminal with admin):","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"sudo synogroup --add docker Adm1n\n# then log out and back in, then:\ncd /volume1/screenpipe/app && docker compose up -d","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Option 3 — Run it directly from an SSH session with sudo","depth":23,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"ssh admin@your-nas-ip\nsudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Once running, the dashboard will be at","depth":22,"role_description":"text"},{"role":"AXLink","text":"http://your-nas-ip:8766","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"http://your-nas-ip:8766","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"and it will query the data you already copied — the database has 6,923 frames and 5,464 OCR records ready to go.","depth":22,"role_description":"text"},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"docker-compose.yml","depth":22,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker-compose.yml","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"I have ugos ugreen nas. I can see the ui but it is empty. No data. Also when I open it there is defsault today, lets make default yesterday.","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Let me check why data isn't showing and look at the frontend.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \"SELECT DATE(timestamp) as d, COUNT(*) FROM frames GROUP BY d ORDER BY d DESC LIMIT 10;\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"2026-04-13|2643\n2026-04-12|2455\n2026-04-11|1302\n2026-04-09|523\n[rerun: b1]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app/static/","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"index.html\n[rerun: b2]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"wc -l /volume1/screenpipe/app/static/index.html","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"1048 /volume1/screenpipe/app/static/index.html\n[rerun: b3]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"grep -n \"today\\|new Date\\|date\\|default\" /volume1/screenpipe/app/static/index.html | head -40","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"24:input[type=\"date\"] {\n71:.sess-segment:hover { opacity: 0.8; cursor: default; }\n179:button:disabled { opacity: 0.4; cursor: default; }\n276: <input type=\"date\" id=\"datePicker\" onchange=\"refresh()\">\n336: <select id=\"sSrc\" onchange=\"updateSourceHint()\">\n356: <input type=\"date\" id=\"sDate\">\n388: <div id=\"workReportOut\"><div class=\"empty\">Click Generate Report to build a structured work summary for the selected date.</div></div>\n398: <option value=\"standup\">Standup Update</option>\n453:const dp = document.getElementById('datePicker');\n454:dp.value = new Date().toISOString().slice(0,10);\n525: // Re-render bars to update selection highlight\n679: const bucket = Math.floor(new Date(r.timestamp).getTime() / (everyMin * 60000));\n710:function updateSourceHint() {\n721: updateSourceHint();\n797: if (!rows.length) { el.innerHTML = '<div class=\"empty\">No audio for this date.</div>'; return; }\n835: try { return new Date(ts).toLocaleTimeString([],{hour:'2-digit',minute:'2-digit'}); }\n885: const spanMs = new Date(s.day_end) - new Date(s.day_start);\n891: const left = (new Date(seg.start) - new Date(s.day_start)) / spanMs * 100;\n892: const width = (new Date(seg.end) - new Date(seg.start)) / spanMs * 100;\n899: const left = (new Date(brk.start) - new Date(s.day_start)) / spanMs * 100;\n900: const width = (new Date(brk.end) - new Date(brk.start)) / spanMs * 100;\n[rerun: b4]","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"}]...
|
-4501287080205108519
|
-8263646488687896943
|
idle
|
accessibility
|
NULL
|
Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧ Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧G)
Run and Debug (⇧⌘D)
Remote Explorer
Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update
2
Claude Code
Containers
EXPLORER
EXPLORER
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
SCREENPIPE [SSH: [IP_ADDRESS]]
#recycle
app
__pycache__
consumers
static
.env
cli.py
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
data
pipes
db.sqlite
db.sqlite-shm
db.sqlite-wal
Outline Section
OUTLINE
OUTLINE
Timeline Section
TIMELINE
TIMELINE
pipe.md, Editor Group 1
Untitled-2, Editor Group 1
docker-compose.yml, preview, Editor Group 1
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
Getting started with Cla…, Editor Group 2
Problems (⇧⌘M)
PROBLEMS
Output (⇧⌘U)
OUTPUT
Debug Console (⇧⌘Y)
DEBUG CONSOLE
Terminal (⌃`)
TERMINAL
Ports
PORTS
remote SSH: [IP_ADDRESS]
SSH: [IP_ADDRESS]
No Problems
0
0
No Ports Forwarded
0
Notifications
Sign In
Sign In
Screen Reader Optimized
Info: Setting up SSH Host [IP_ADDRESS]: Setting up SSH tunnel
Command Succeeded
Getting started with Claude agent SDK
Session history
New session
Message actions
how to start it
Thinking
Thinking
Let me check what's in your working directory to understand what you're referring to.
Bash
IN
ls /volume1/screenpipe
Copy code to clipboard
OUT
app
data
db.sqlite
pipes
#recycle
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes
Copy code to clipboard
OUT
cli.py
consumers
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
static
ai-habits
day-recap
meeting-summary
standup-update
time-breakdown
video-export
[rerun: b2]
Read
docker-compose.yml
docker-compose.yml
This is a Screenpipe app with a Docker Compose setup. To start it:
Copy code to clipboard
cd /volume1/screenpipe/app
docker compose up -d
This builds the image (first run) and starts the container in the background
The app will be accessible at
[URL_WITH_CREDENTIALS]
sudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d
Once running, the dashboard will be at
http://your-nas-ip:8766
http://your-nas-ip:8766
and it will query the data you already copied — the database has 6,923 frames and 5,464 OCR records ready to go.
Message actions
docker-compose.yml
docker-compose.yml
I have ugos ugreen nas. I can see the ui but it is empty. No data. Also when I open it there is defsault today, lets make default yesterday.
Thinking
Thinking
Let me check why data isn't showing and look at the frontend.
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT DATE(timestamp) as d, COUNT(*) FROM frames GROUP BY d ORDER BY d DESC LIMIT 10;"
Copy code to clipboard
OUT
2026-04-13|2643
2026-04-12|2455
2026-04-11|1302
2026-04-09|523
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app/static/
Copy code to clipboard
OUT
index.html
[rerun: b2]
Bash
IN
wc -l /volume1/screenpipe/app/static/index.html
Copy code to clipboard
OUT
1048 /volume1/screenpipe/app/static/index.html
[rerun: b3]
Bash
IN
grep -n "today\|new Date\|date\|default" /volume1/screenpipe/app/static/index.html | head -40
Copy code to clipboard
OUT
24:input[type="date"] {
71:.sess-segment:hover { opacity: 0.8; cursor: default; }
179:button:disabled { opacity: 0.4; cursor: default; }
276: <input type="date" id="datePicker" onchange="refresh()">
336: <select id="sSrc" onchange="updateSourceHint()">
356: <input type="date" id="sDate">
388: <div id="workReportOut"><div class="empty">Click Generate Report to build a structured work summary for the selected date.</div></div>
398: <option value="standup">Standup Update</option>
453:const dp = document.getElementById('datePicker');
454:dp.value = new Date().toISOString().slice(0,10);
525: // Re-render bars to update selection highlight
679: const bucket = Math.floor(new Date(r.timestamp).getTime() / (everyMin * 60000));
710:function updateSourceHint() {
721: updateSourceHint();
797: if (!rows.length) { el.innerHTML = '<div class="empty">No audio for this date.</div>'; return; }
835: try { return new Date(ts).toLocaleTimeString([],{hour:'2-digit',minute:'2-digit'}); }
885: const spanMs = new Date(s.day_end) - new Date(s.day_start);
891: const left = (new Date(seg.start) - new Date(s.day_start)) / spanMs * 100;
892: const width = (new Date(seg.end) - new Date(seg.start)) / spanMs * 100;
899: const left = (new Date(brk.start) - new Date(s.day_start)) / spanMs * 100;
900: const width = (new Date(brk.end) - new Date(brk.start)) / spanMs * 100;
[rerun: b4]
Thinking
Thinking
Bash...
|
NULL
|
|
7563
|
141
|
7
|
2026-04-13T16:04:39.246789+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096279246_m1.jpg...
|
Code
|
Getting started with Cla… — screenpipe [SSH: 100.7 Getting started with Cla… — screenpipe [SSH: 100.73.206.126]...
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧ Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧G)
Run and Debug (⇧⌘D)
Remote Explorer
Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update
2
Claude Code
Containers
EXPLORER
EXPLORER
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
SCREENPIPE [SSH: [IP_ADDRESS]]
#recycle
app
__pycache__
consumers
static
.env
cli.py
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
data
pipes
db.sqlite
db.sqlite-shm
db.sqlite-wal
Outline Section
OUTLINE
OUTLINE
Timeline Section
TIMELINE
TIMELINE
pipe.md, Editor Group 1
Untitled-2, Editor Group 1
docker-compose.yml, preview, Editor Group 1
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
Getting started with Cla…, Editor Group 2
Problems (⇧⌘M)
PROBLEMS
Output (⇧⌘U)
OUTPUT
Debug Console (⇧⌘Y)
DEBUG CONSOLE
Terminal (⌃`)
TERMINAL
Ports
PORTS
remote SSH: [IP_ADDRESS]
SSH: [IP_ADDRESS]
No Problems
0
0
No Ports Forwarded
0
Notifications
Sign In
Sign In
Screen Reader Optimized
Info: Setting up SSH Host [IP_ADDRESS]: Setting up SSH tunnel
Command Succeeded
Getting started with Claude agent SDK
Session history
New session
Message actions
how to start it
Thinking
Thinking
Let me check what's in your working directory to understand what you're referring to.
Bash
IN
ls /volume1/screenpipe
Copy code to clipboard
OUT
app
data
db.sqlite
pipes
#recycle
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes
Copy code to clipboard
OUT
cli.py
consumers
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
static
ai-habits
day-recap
meeting-summary
standup-update
time-breakdown
video-export
[rerun: b2]
Read
docker-compose.yml
docker-compose.yml
This is a Screenpipe app with a Docker Compose setup. To start it:
Copy code to clipboard
cd /volume1/screenpipe/app
docker compose up -d
This builds the image (first run) and starts the container in the background
The app will be accessible at
[URL_WITH_CREDENTIALS]
sudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d
Once running, the dashboard will be at
http://your-nas-ip:8766
http://your-nas-ip:8766
and it will query the data you already copied — the database has 6,923 frames and 5,464 OCR records ready to go.
Message actions
docker-compose.yml
docker-compose.yml
I have ugos ugreen nas. I can see the ui but it is empty. No data. Also when I open it there is defsault today, lets make default yesterday.
Thinking
Thinking
Let me check why data isn't showing and look at the frontend.
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT DATE(timestamp) as d, COUNT(*) FROM frames GROUP BY d ORDER BY d DESC LIMIT 10;"
Copy code to clipboard
OUT
2026-04-13|2643
2026-04-12|2455
2026-04-11|1302
2026-04-09|523
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app/static/
Copy code to clipboard
OUT
index.html
[rerun: b2]
Bash
IN
wc -l /volume1/screenpipe/app/static/index.html
Copy code to clipboard
OUT
1048 /volume1/screenpipe/app/static/index.html
[rerun: b3]
Bash
IN
grep -n "today\|new Date\|date\|default" /volume1/screenpipe/app/static/index.html | head -40
Copy code to clipboard
OUT
24:input[type="date"] {
71:.sess-segment:hover { opacity: 0.8; cursor: default; }
179:button:disabled { opacity: 0.4; cursor: default; }
276: <input type="date" id="datePicker" onchange="refresh()">
336: <select id="sSrc" onchange="updateSourceHint()">
356: <input type="date" id="sDate">
388: <div id="workReportOut"><div class="empty">Click Generate Report to build a structured work summary for the selected date.</div></div>
398: <option value="standup">Standup Update</option>
453:const dp = document.getElementById('datePicker');
454:dp.value = new Date().toISOString().slice(0,10);
525: // Re-render bars to update selection highlight
679: const bucket = Math.floor(new Date(r.timestamp).getTime() / (everyMin * 60000));
710:function updateSourceHint() {
721: updateSourceHint();
797: if (!rows.length) { el.innerHTML = '<div class="empty">No audio for this date.</div>'; return; }
835: try { return new Date(ts).toLocaleTimeString([],{hour:'2-digit',minute:'2-digit'}); }
885: const spanMs = new Date(s.day_end) - new Date(s.day_start);
891: const left = (new Date(seg.start) - new Date(s.day_start)) / spanMs * 100;
892: const width = (new Date(seg.end) - new Date(seg.start)) / spanMs * 100;
899: const left = (new Date(brk.start) - new Date(s.day_start)) / spanMs * 100;
900: const width = (new Date(brk.end) - new Date(brk.start)) / spanMs * 100;
[rerun: b4]...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"Explorer (⇧⌘E)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":true},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Search (⇧⌘F)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Source Control (⌃⇧G)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Run and Debug (⇧⌘D)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Remote Explorer","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"2","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Claude Code","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Containers","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"EXPLORER","depth":17,"role_description":"heading"},{"role":"AXStaticText","text":"EXPLORER","depth":18,"role_description":"text"},{"role":"AXButton","text":"Explorer Section: screenpipe [SSH: 100.73.206.126]","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"Explorer Section: screenpipe [SSH: 100.73.206.126]","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"SCREENPIPE [SSH: 100.73.206.126]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"#recycle","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"app","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"__pycache__","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"consumers","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"static","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"cli.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"docker-compose.yml","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"Dockerfile","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"main.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"requirements.txt","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"data","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"pipes","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite-shm","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite-wal","depth":27,"role_description":"text"},{"role":"AXButton","text":"Outline Section","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"OUTLINE","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"OUTLINE","depth":23,"role_description":"text"},{"role":"AXButton","text":"Timeline Section","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"TIMELINE","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"TIMELINE","depth":23,"role_description":"text"},{"role":"AXRadioButton","text":"pipe.md, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Untitled-2, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"docker-compose.yml, preview, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXStaticText","text":"","depth":29,"role_description":"text"},{"role":"AXTextArea","text":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","depth":28,"value":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","role_description":"editor","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","depth":29,"role_description":"text"},{"role":"AXRadioButton","text":"Getting started with Cla…, Editor Group 2","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXRadioButton","text":"Problems (⇧⌘M)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"PROBLEMS","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Output (⇧⌘U)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUTPUT","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Debug Console (⇧⌘Y)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"DEBUG CONSOLE","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Terminal (⌃`)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":true},{"role":"AXStaticText","text":"TERMINAL","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Ports","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"PORTS","depth":24,"role_description":"text"},{"role":"AXButton","text":"remote SSH: 100.73.206.126","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"SSH: 100.73.206.126","depth":17,"role_description":"text"},{"role":"AXButton","text":"No Problems","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXButton","text":"No Ports Forwarded","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXButton","text":"Notifications","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sign In","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"Sign In","depth":17,"role_description":"text"},{"role":"AXButton","text":"Screen Reader Optimized","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Info: Setting up SSH Host 100.73.206.126: Setting up SSH tunnel","depth":12,"role_description":"text"},{"role":"AXStaticText","text":"Command Succeeded","depth":12,"role_description":"text"},{"role":"AXButton","text":"Getting started with Claude agent SDK","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Session history","depth":18,"help_text":"Session history","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New session","depth":18,"help_text":"New session","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"how to start it","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Let me check what's in your working directory to understand what you're referring to.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"app\ndata\ndb.sqlite\npipes\n#recycle\n[rerun: b1]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"cli.py\nconsumers\ndb.py\ndocker-compose.yml\nDockerfile\nmain.py\nrequirements.txt\nstatic\nai-habits\nday-recap\nmeeting-summary\nstandup-update\ntime-breakdown\nvideo-export\n[rerun: b2]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"docker-compose.yml","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker-compose.yml","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"This is a Screenpipe app with a Docker Compose setup. To start it:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app\ndocker compose up -d","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"This builds the image (first run) and starts the container in the background","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"The app will be accessible at","depth":23,"role_description":"text"},{"role":"AXLink","text":"http://your-server-ip:8766","depth":24,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"http://your-server-ip:8766","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"To check if it's running:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker compose ps","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"To view logs:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker compose logs -f","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Make sure an","depth":22,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"file exists in","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"before starting — the compose file references one (","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"env_file: .env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"). If it's missing, the container will fail to start.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app/.env 2>/dev/null && echo \"exists\" || echo \"MISSING\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/.env\nexists\n[rerun: b3]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"The","depth":22,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"file exists, so you're good to go. Just run:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app && docker compose up -d","depth":24,"role_description":"text"},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"docker-compose.yml","depth":22,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker-compose.yml","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"I opened it but there are no data after I coppied it there. the idea behind this app is to have the data pasted form screenpipe mac app and only query it and work with it","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Let me check the current state of the data.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls -lh /volume1/screenpipe/db.sqlite && ls /volume1/screenpipe/data/ | head -20","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"-rwxrwxrwx 1 Adm1n admin 423M Apr 13 17:20 /volume1/screenpipe/db.sqlite\n2026-04-09\n2026-04-11\n2026-04-12\n[rerun: b1]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \".tables\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"_sqlx_migrations meetings \naudio_chunks memories \naudio_tags memories_fts \naudio_transcriptions memories_fts_config \naudio_transcriptions_fts memories_fts_data \naudio_transcriptions_fts_config memories_fts_docsize \naudio_transcriptions_fts_data memories_fts_idx \naudio_transcriptions_fts_docsize ocr_text \naudio_transcriptions_fts_idx pipe_executions \nelements pipe_scheduler_state \nelements_fts speaker_embeddings \nelements_fts_config speakers \nelements_fts_data tags \nelements_fts_docsize ui_events \nelements_fts_idx ui_events_fts \nframes ui_events_fts_config \nframes_fts ui_events_fts_data \nframes_fts_config ui_events_fts_docsize \nframes_fts_content ui_events_fts_idx \nframes_fts_data video_chunks \nframes_fts_docsize vision_tags \nframes_fts_idx\n[rerun: b2]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \"SELECT COUNT(*) FROM frames; SELECT COUNT(*) FROM ocr_text; SELECT COUNT(*) FROM audio_transcriptions;\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"6923\n5464\n3\n[rerun: b3]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"The data is there — 423MB database with 6,923 frames and 5,464 OCR records. The app just isn't running yet. Let me check what the app actually does and whether it can query this data properly.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"main.py","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"main.py","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"db.py","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"db.py","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"The data is actually there — the database has 423MB of data. The app just needs to be started. Let me start it:","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app && docker compose up -d 2>&1","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Exit code 1\npermission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Get \"http://%2Fvar%2Frun%2Fdocker.sock/v1.45/containers/json?all=1&filters=%7B%22label%22%3A%7B%22com.docker.compose.config-hash%22%3Atrue%2C%22com.docker.compose.project%3Dapp%22%3Atrue%7D%7D\": dial unix /var/run/docker.sock: connect: permission denied\n[rerun: b4]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d 2>&1","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Exit code 1\nsudo: a terminal is required to read the password; either use the -S option to read from standard input or configure an askpass helper\nsudo: a password is required\n[rerun: b5]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"groups && id","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"admin users ughomeusers Media Social\nuid=1000(Adm1n) gid=10(admin) groups=10(admin),100(users),133(ughomeusers),1001(Media),1002(Social)\n[rerun: b6]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"You need to run Docker with elevated privileges. You're not in the","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"docker","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"group. There are two options:","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Option 1 — Run via Synology's Container Manager (DSM GUI)","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Open DSM → Container Manager → Project → Create project → point it to","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/docker-compose.yml","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Option 2 — Add yourself to the docker group (requires admin/root once)","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Open an SSH terminal as root (or via DSM terminal with admin):","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"sudo synogroup --add docker Adm1n\n# then log out and back in, then:\ncd /volume1/screenpipe/app && docker compose up -d","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Option 3 — Run it directly from an SSH session with sudo","depth":23,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"ssh admin@your-nas-ip\nsudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Once running, the dashboard will be at","depth":22,"role_description":"text"},{"role":"AXLink","text":"http://your-nas-ip:8766","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"http://your-nas-ip:8766","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"and it will query the data you already copied — the database has 6,923 frames and 5,464 OCR records ready to go.","depth":22,"role_description":"text"},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"docker-compose.yml","depth":22,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker-compose.yml","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"I have ugos ugreen nas. I can see the ui but it is empty. No data. Also when I open it there is defsault today, lets make default yesterday.","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Let me check why data isn't showing and look at the frontend.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \"SELECT DATE(timestamp) as d, COUNT(*) FROM frames GROUP BY d ORDER BY d DESC LIMIT 10;\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"2026-04-13|2643\n2026-04-12|2455\n2026-04-11|1302\n2026-04-09|523\n[rerun: b1]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app/static/","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"index.html\n[rerun: b2]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"wc -l /volume1/screenpipe/app/static/index.html","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"1048 /volume1/screenpipe/app/static/index.html\n[rerun: b3]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"grep -n \"today\\|new Date\\|date\\|default\" /volume1/screenpipe/app/static/index.html | head -40","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"24:input[type=\"date\"] {\n71:.sess-segment:hover { opacity: 0.8; cursor: default; }\n179:button:disabled { opacity: 0.4; cursor: default; }\n276: <input type=\"date\" id=\"datePicker\" onchange=\"refresh()\">\n336: <select id=\"sSrc\" onchange=\"updateSourceHint()\">\n356: <input type=\"date\" id=\"sDate\">\n388: <div id=\"workReportOut\"><div class=\"empty\">Click Generate Report to build a structured work summary for the selected date.</div></div>\n398: <option value=\"standup\">Standup Update</option>\n453:const dp = document.getElementById('datePicker');\n454:dp.value = new Date().toISOString().slice(0,10);\n525: // Re-render bars to update selection highlight\n679: const bucket = Math.floor(new Date(r.timestamp).getTime() / (everyMin * 60000));\n710:function updateSourceHint() {\n721: updateSourceHint();\n797: if (!rows.length) { el.innerHTML = '<div class=\"empty\">No audio for this date.</div>'; return; }\n835: try { return new Date(ts).toLocaleTimeString([],{hour:'2-digit',minute:'2-digit'}); }\n885: const spanMs = new Date(s.day_end) - new Date(s.day_start);\n891: const left = (new Date(seg.start) - new Date(s.day_start)) / spanMs * 100;\n892: const width = (new Date(seg.end) - new Date(seg.start)) / spanMs * 100;\n899: const left = (new Date(brk.start) - new Date(s.day_start)) / spanMs * 100;\n900: const width = (new Date(brk.end) - new Date(brk.start)) / spanMs * 100;\n[rerun: b4]","depth":24,"role_description":"text"}]...
|
-5071093515896161896
|
-8263646488687896943
|
idle
|
accessibility
|
NULL
|
Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧ Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧G)
Run and Debug (⇧⌘D)
Remote Explorer
Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update
2
Claude Code
Containers
EXPLORER
EXPLORER
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
SCREENPIPE [SSH: [IP_ADDRESS]]
#recycle
app
__pycache__
consumers
static
.env
cli.py
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
data
pipes
db.sqlite
db.sqlite-shm
db.sqlite-wal
Outline Section
OUTLINE
OUTLINE
Timeline Section
TIMELINE
TIMELINE
pipe.md, Editor Group 1
Untitled-2, Editor Group 1
docker-compose.yml, preview, Editor Group 1
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
Getting started with Cla…, Editor Group 2
Problems (⇧⌘M)
PROBLEMS
Output (⇧⌘U)
OUTPUT
Debug Console (⇧⌘Y)
DEBUG CONSOLE
Terminal (⌃`)
TERMINAL
Ports
PORTS
remote SSH: [IP_ADDRESS]
SSH: [IP_ADDRESS]
No Problems
0
0
No Ports Forwarded
0
Notifications
Sign In
Sign In
Screen Reader Optimized
Info: Setting up SSH Host [IP_ADDRESS]: Setting up SSH tunnel
Command Succeeded
Getting started with Claude agent SDK
Session history
New session
Message actions
how to start it
Thinking
Thinking
Let me check what's in your working directory to understand what you're referring to.
Bash
IN
ls /volume1/screenpipe
Copy code to clipboard
OUT
app
data
db.sqlite
pipes
#recycle
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes
Copy code to clipboard
OUT
cli.py
consumers
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
static
ai-habits
day-recap
meeting-summary
standup-update
time-breakdown
video-export
[rerun: b2]
Read
docker-compose.yml
docker-compose.yml
This is a Screenpipe app with a Docker Compose setup. To start it:
Copy code to clipboard
cd /volume1/screenpipe/app
docker compose up -d
This builds the image (first run) and starts the container in the background
The app will be accessible at
[URL_WITH_CREDENTIALS]
sudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d
Once running, the dashboard will be at
http://your-nas-ip:8766
http://your-nas-ip:8766
and it will query the data you already copied — the database has 6,923 frames and 5,464 OCR records ready to go.
Message actions
docker-compose.yml
docker-compose.yml
I have ugos ugreen nas. I can see the ui but it is empty. No data. Also when I open it there is defsault today, lets make default yesterday.
Thinking
Thinking
Let me check why data isn't showing and look at the frontend.
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT DATE(timestamp) as d, COUNT(*) FROM frames GROUP BY d ORDER BY d DESC LIMIT 10;"
Copy code to clipboard
OUT
2026-04-13|2643
2026-04-12|2455
2026-04-11|1302
2026-04-09|523
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app/static/
Copy code to clipboard
OUT
index.html
[rerun: b2]
Bash
IN
wc -l /volume1/screenpipe/app/static/index.html
Copy code to clipboard
OUT
1048 /volume1/screenpipe/app/static/index.html
[rerun: b3]
Bash
IN
grep -n "today\|new Date\|date\|default" /volume1/screenpipe/app/static/index.html | head -40
Copy code to clipboard
OUT
24:input[type="date"] {
71:.sess-segment:hover { opacity: 0.8; cursor: default; }
179:button:disabled { opacity: 0.4; cursor: default; }
276: <input type="date" id="datePicker" onchange="refresh()">
336: <select id="sSrc" onchange="updateSourceHint()">
356: <input type="date" id="sDate">
388: <div id="workReportOut"><div class="empty">Click Generate Report to build a structured work summary for the selected date.</div></div>
398: <option value="standup">Standup Update</option>
453:const dp = document.getElementById('datePicker');
454:dp.value = new Date().toISOString().slice(0,10);
525: // Re-render bars to update selection highlight
679: const bucket = Math.floor(new Date(r.timestamp).getTime() / (everyMin * 60000));
710:function updateSourceHint() {
721: updateSourceHint();
797: if (!rows.length) { el.innerHTML = '<div class="empty">No audio for this date.</div>'; return; }
835: try { return new Date(ts).toLocaleTimeString([],{hour:'2-digit',minute:'2-digit'}); }
885: const spanMs = new Date(s.day_end) - new Date(s.day_start);
891: const left = (new Date(seg.start) - new Date(s.day_start)) / spanMs * 100;
892: const width = (new Date(seg.end) - new Date(seg.start)) / spanMs * 100;
899: const left = (new Date(brk.start) - new Date(s.day_start)) / spanMs * 100;
900: const width = (new Date(brk.end) - new Date(brk.start)) / spanMs * 100;
[rerun: b4]...
|
7562
|
|
7564
|
141
|
8
|
2026-04-13T16:05:09.470681+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096309470_m1.jpg...
|
Firefox
|
Screenpipe Dashboard — Personal
|
True
|
http://100.73.206.126:8766
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Close tab
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Screenpipe
Screenpipe
Activity
Search
Audio
Work Report
AI Summary
Date
12
/
04
/
2026
Calendar
Red plus
Search
Source
App
any app
Date
dd
/
mm
/
yyyy
Calendar
(blank = all dates)
From
--
:
--
To
--
:
--
FTS tip: single words work best · "exact phrase" · term1 OR term2
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:2000 GB3000 Gb4000 Gb6000 GB8000 Gb6твwestem...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gbb000 GbSOO0 GHОтвwestemn...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...
18:29 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:29 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:28 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:25 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:23 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:23 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:18 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:18 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:17 ·...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Inbox - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Shameless • HBO Max","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Shameless • HBO Max","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Mute tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Machines - Tailscale","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Machines - Tailscale","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe Dashboard","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Screenpipe Dashboard","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Pazaruvaj.com — Знак, че е време за най-добрите оферти","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pazaruvaj.com — Знак, че е време за най-добрите оферти","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"google maps timeline export - Google Search","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"google maps timeline export - Google Search","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Screenpipe","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Screenpipe","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Activity","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Search","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Audio","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Work Report","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"AI Summary","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Date","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"12","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"04","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2026","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Calendar","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Red plus","depth":8,"value":"Red plus","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Search","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Source","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"App","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXComboBox","text":"any app","depth":8,"help_text":"","role_description":"combo box","subrole":"AXUnknown","is_enabled":true,"is_focused":true,"is_selected":false},{"role":"AXStaticText","text":"Date","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"dd","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"mm","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"yyyy","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Calendar","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"(blank = all dates)","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"From","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":":","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"To","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":":","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"FTS tip: single words work best · \"exact phrase\" · term1 OR term2","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:39","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:2000 GB3000 Gb4000 Gb6000 GB8000 Gb6твwestem...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:39","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gbb000 GbSOO0 GHОтвwestemn...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:39","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:39","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:29 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...21:19 · iTerm2 / ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...was the cheapest Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...20) ⏺ screenpipe...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:29 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...21:19 · iTerm2 / ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...was the cheapest Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...20) ⏺ screenpipe...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:28 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:26 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:26 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:26 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:25 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:23 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:23 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:19 ·","depth":10,"bounds":{"left":0.16388889,"top":0.0,"width":0.025694445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"bounds":{"left":0.18958333,"top":0.0,"width":0.02638889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"bounds":{"left":0.21597221,"top":0.0,"width":0.13263889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"bounds":{"left":0.16388889,"top":0.0,"width":0.090277776,"height":0.014444444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"bounds":{"left":0.16388889,"top":0.0,"width":0.20069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.36527777,"top":0.0,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.38541666,"top":0.0,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"bounds":{"left":0.40347221,"top":0.0,"width":0.16319445,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5673611,"top":0.0,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.5875,"top":0.0,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"bounds":{"left":0.60625,"top":0.0,"width":0.15069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.7576389,"top":0.0,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.7777778,"top":0.0,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"bounds":{"left":0.16388889,"top":0.0,"width":0.82708335,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.23055555,"top":0.0,"width":0.016666668,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"bounds":{"left":0.24791667,"top":0.0,"width":0.007638889,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:19 ·","depth":10,"bounds":{"left":0.16388889,"top":0.02111111,"width":0.025694445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"bounds":{"left":0.18958333,"top":0.02111111,"width":0.02638889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"bounds":{"left":0.21597221,"top":0.02111111,"width":0.13263889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"bounds":{"left":0.16388889,"top":0.04,"width":0.090277776,"height":0.014444444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"bounds":{"left":0.16388889,"top":0.062222224,"width":0.20069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.36527777,"top":0.062222224,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.38541666,"top":0.062222224,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"bounds":{"left":0.40347221,"top":0.062222224,"width":0.16319445,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5673611,"top":0.062222224,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.5875,"top":0.062222224,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"bounds":{"left":0.60625,"top":0.062222224,"width":0.15069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.7576389,"top":0.062222224,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.7777778,"top":0.062222224,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"bounds":{"left":0.16388889,"top":0.062222224,"width":0.82708335,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.23055555,"top":0.08444444,"width":0.016666668,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"bounds":{"left":0.24791667,"top":0.08444444,"width":0.007638889,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:19 ·","depth":10,"bounds":{"left":0.16388889,"top":0.12888889,"width":0.025694445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"bounds":{"left":0.18958333,"top":0.12888889,"width":0.02638889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"bounds":{"left":0.21597221,"top":0.12888889,"width":0.13263889,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"bounds":{"left":0.16388889,"top":0.14777778,"width":0.090277776,"height":0.014444444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...21:19 · iTerm2 / ⠂ Research Western Digital","depth":10,"bounds":{"left":0.16388889,"top":0.17,"width":0.19027779,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.3548611,"top":0.17,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.375,"top":0.17,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...was the cheapest Western Digital","depth":10,"bounds":{"left":0.39375,"top":0.17,"width":0.18402778,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5784722,"top":0.17,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.5986111,"top":0.17,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital","depth":10,"bounds":{"left":0.6166667,"top":0.17,"width":0.26875,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.88611114,"top":0.17,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.90625,"top":0.17,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...20) ⏺ screenpipe...","depth":10,"bounds":{"left":0.16388889,"top":0.17,"width":0.825,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:18 ·","depth":10,"bounds":{"left":0.16388889,"top":0.23666666,"width":0.025694445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"bounds":{"left":0.18958333,"top":0.23666666,"width":0.027083334,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"bounds":{"left":0.21666667,"top":0.23666666,"width":0.13194445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"bounds":{"left":0.16388889,"top":0.25555557,"width":0.090277776,"height":0.014444444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"bounds":{"left":0.16388889,"top":0.2777778,"width":0.20069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.36527777,"top":0.2777778,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.38541666,"top":0.2777778,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"bounds":{"left":0.40347221,"top":0.2777778,"width":0.16319445,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5673611,"top":0.2777778,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.5875,"top":0.2777778,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"bounds":{"left":0.60625,"top":0.2777778,"width":0.15069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.7576389,"top":0.2777778,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.7777778,"top":0.2777778,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"bounds":{"left":0.16388889,"top":0.2777778,"width":0.82708335,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.23055555,"top":0.3,"width":0.016666668,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"bounds":{"left":0.24791667,"top":0.3,"width":0.007638889,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:18 ·","depth":10,"bounds":{"left":0.16388889,"top":0.34444445,"width":0.025694445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"bounds":{"left":0.18958333,"top":0.34444445,"width":0.027083334,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"bounds":{"left":0.21666667,"top":0.34444445,"width":0.13194445,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"bounds":{"left":0.16388889,"top":0.36333334,"width":0.090277776,"height":0.014444444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"bounds":{"left":0.16388889,"top":0.38555557,"width":0.20069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.36527777,"top":0.38555557,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.38541666,"top":0.38555557,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"bounds":{"left":0.40347221,"top":0.38555557,"width":0.16319445,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.5673611,"top":0.38555557,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.5875,"top":0.38555557,"width":0.018055556,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"bounds":{"left":0.60625,"top":0.38555557,"width":0.15069444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.7576389,"top":0.38555557,"width":0.015972223,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"bounds":{"left":0.7777778,"top":0.38555557,"width":0.017361112,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"bounds":{"left":0.16388889,"top":0.38555557,"width":0.82708335,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"bounds":{"left":0.23055555,"top":0.4077778,"width":0.016666668,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"bounds":{"left":0.24791667,"top":0.4077778,"width":0.007638889,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:17 ·","depth":10,"bounds":{"left":0.16388889,"top":0.45222223,"width":0.025,"height":0.015555556},"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
8332054131402221748
|
-618392454502678064
|
idle
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Close tab
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Screenpipe
Screenpipe
Activity
Search
Audio
Work Report
AI Summary
Date
12
/
04
/
2026
Calendar
Red plus
Search
Source
App
any app
Date
dd
/
mm
/
yyyy
Calendar
(blank = all dates)
From
--
:
--
To
--
:
--
FTS tip: single words work best · "exact phrase" · term1 OR term2
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:2000 GB3000 Gb4000 Gb6000 GB8000 Gb6твwestem...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gbb000 GbSOO0 GHОтвwestemn...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...
18:29 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:29 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:28 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:25 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:23 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:23 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:18 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:18 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:17 ·...
|
NULL
|
|
7565
|
141
|
9
|
2026-04-13T16:05:39.683329+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096339683_m1.jpg...
|
Code
|
Getting started with Cla… — screenpipe [SSH: 100.7 Getting started with Cla… — screenpipe [SSH: 100.73.206.126]...
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧ Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧G)
Run and Debug (⇧⌘D)
Remote Explorer
Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update
2
Claude Code
Containers
EXPLORER
EXPLORER
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
SCREENPIPE [SSH: [IP_ADDRESS]]
#recycle
app
__pycache__
consumers
static
.env
cli.py
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
data
pipes
db.sqlite
db.sqlite-shm
db.sqlite-wal
Outline Section
OUTLINE
OUTLINE
Timeline Section
TIMELINE
TIMELINE
pipe.md, Editor Group 1
Untitled-2, Editor Group 1
docker-compose.yml, preview, Editor Group 1
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
Getting started with Cla…, Editor Group 2
Problems (⇧⌘M)
PROBLEMS
Output (⇧⌘U)
OUTPUT
Debug Console (⇧⌘Y)
DEBUG CONSOLE
Terminal (⌃`)
TERMINAL
Ports
PORTS
remote SSH: [IP_ADDRESS]
SSH: [IP_ADDRESS]
No Problems
0
0
No Ports Forwarded
0
Notifications
Sign In
Sign In
Screen Reader Optimized
Info: Setting up SSH Host [IP_ADDRESS]: Setting up SSH tunnel
Command Succeeded
Getting started with Claude agent SDK
Session history
New session
Message actions
how to start it
Thinking
Thinking
Let me check what's in your working directory to understand what you're referring to.
Bash
IN
ls /volume1/screenpipe
Copy code to clipboard
OUT
app
data
db.sqlite
pipes
#recycle
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes
Copy code to clipboard
OUT
cli.py
consumers
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
static
ai-habits
day-recap
meeting-summary
standup-update
time-breakdown
video-export
[rerun: b2]
Read
docker-compose.yml
docker-compose.yml
This is a Screenpipe app with a Docker Compose setup. To start it:
Copy code to clipboard
cd /volume1/screenpipe/app
docker compose up -d
This builds the image (first run) and starts the container in the background
The app will be accessible at
[URL_WITH_CREDENTIALS]
sudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d
Once running, the dashboard will be at
http://your-nas-ip:8766
http://your-nas-ip:8766
and it will query the data you already copied — the database has 6,923 frames and 5,464 OCR records ready to go.
Message actions
docker-compose.yml
docker-compose.yml
I have ugos ugreen nas. I can see the ui but it is empty. No data. Also when I open it there is defsault today, lets make default yesterday.
Thinking
Thinking
Let me check why data isn't showing and look at the frontend.
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT DATE(timestamp) as d, COUNT(*) FROM frames GROUP BY d ORDER BY d DESC LIMIT 10;"
Copy code to clipboard
OUT
2026-04-13|2643
2026-04-12|2455
2026-04-11|1302
2026-04-09|523
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app/static/
Copy code to clipboard
OUT
index.html
[rerun: b2]
Bash
IN
wc -l /volume1/screenpipe/app/static/index.html
Copy code to clipboard
OUT
1048 /volume1/screenpipe/app/static/index.html
[rerun: b3]
Bash
IN
grep -n "today\|new Date\|date\|default" /volume1/screenpipe/app/static/index.html | head -40
Copy code to clipboard
OUT
24:input[type="date"] {
71:.sess-segment:hover { opacity: 0.8; cursor: default; }
179:button:disabled { opacity: 0.4; cursor: default; }
276: <input type="date" id="datePicker" onchange="refresh()">
336: <select id="sSrc" onchange="updateSourceHint()">
356: <input type="date" id="sDate">
388: <div id="workReportOut"><div class="empty">Click Generate Report to build a structured work summary for the selected date.</div></div>
398: <option value="standup">Standup Update</option>
453:const dp = document.getElementById('datePicker');
454:dp.value = new Date().toISOString().slice(0,10);
525: // Re-render bars to update selection highlight
679: const bucket = Math.floor(new Date(r.timestamp).getTime() / (everyMin * 60000));
710:function updateSourceHint() {
721: updateSourceHint();
797: if (!rows.length) { el.innerHTML = '<div class="empty">No audio for this date.</div>'; return; }
835: try { return new Date(ts).toLocaleTimeString([],{hour:'2-digit',minute:'2-digit'}); }
885: const spanMs = new Date(s.day_end) - new Date(s.day_start);
891: const left = (new Date(seg.start) - new Date(s.day_start)) / spanMs * 100;
892: const width = (new Date(seg.end) - new Date(seg.start)) / spanMs * 100;
899: const left = (new Date(brk.start) - new Date(s.day_start)) / spanMs * 100;
900: const width = (new Date(brk.end) - new Date(brk.start)) / spanMs * 100;
[rerun: b4]
Thinking
Thinking
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT timestamp FROM frames ORDER BY timestamp DESC LIMIT 3; SELECT timestamp FROM frames ORDER BY timestamp ASC LIMIT 3;"
Copy code to clipboard
OUT
2026-04-13T14:19:10.998594+00:00
2026-04-13T14:19:08.686883+00:00
2026-04-13T14:19:06.581255+00:00
2026-04-09T16:53:09.043761+00:00
2026-04-09T16:53:19.073971+00:00
2026-04-09T16:53:20.618409+00:00
[rerun: b5]
Read
index.html
index.html
(lines 451-480)
Thinking
Thinking
Bash
IN
curl -s "http://localhost:8766/api/stats?d=2026-04-13" 2>&1 | head -50
Copy code to clipboard
OUT
{"date":"2026-04-13","total_frames":0,"first_seen":null,"last_seen":null,"unique_apps":0,"audio_segments":0,"ui_events":0}
[rerun: b6]...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"Explorer (⇧⌘E)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":true},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Search (⇧⌘F)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Source Control (⌃⇧G)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Run and Debug (⇧⌘D)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Remote Explorer","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"2","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Claude Code","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Containers","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"EXPLORER","depth":17,"role_description":"heading"},{"role":"AXStaticText","text":"EXPLORER","depth":18,"role_description":"text"},{"role":"AXButton","text":"Explorer Section: screenpipe [SSH: 100.73.206.126]","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"Explorer Section: screenpipe [SSH: 100.73.206.126]","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"SCREENPIPE [SSH: 100.73.206.126]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"#recycle","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"app","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"__pycache__","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"consumers","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"static","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"cli.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"docker-compose.yml","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"Dockerfile","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"main.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"requirements.txt","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"data","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"pipes","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite-shm","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite-wal","depth":27,"role_description":"text"},{"role":"AXButton","text":"Outline Section","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"OUTLINE","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"OUTLINE","depth":23,"role_description":"text"},{"role":"AXButton","text":"Timeline Section","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"TIMELINE","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"TIMELINE","depth":23,"role_description":"text"},{"role":"AXRadioButton","text":"pipe.md, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Untitled-2, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"docker-compose.yml, preview, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXStaticText","text":"","depth":29,"role_description":"text"},{"role":"AXTextArea","text":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","depth":28,"value":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","role_description":"editor","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","depth":29,"role_description":"text"},{"role":"AXRadioButton","text":"Getting started with Cla…, Editor Group 2","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXRadioButton","text":"Problems (⇧⌘M)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"PROBLEMS","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Output (⇧⌘U)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUTPUT","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Debug Console (⇧⌘Y)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"DEBUG CONSOLE","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Terminal (⌃`)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":true},{"role":"AXStaticText","text":"TERMINAL","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Ports","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"PORTS","depth":24,"role_description":"text"},{"role":"AXButton","text":"remote SSH: 100.73.206.126","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"SSH: 100.73.206.126","depth":17,"role_description":"text"},{"role":"AXButton","text":"No Problems","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXButton","text":"No Ports Forwarded","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXButton","text":"Notifications","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sign In","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"Sign In","depth":17,"role_description":"text"},{"role":"AXButton","text":"Screen Reader Optimized","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Info: Setting up SSH Host 100.73.206.126: Setting up SSH tunnel","depth":12,"role_description":"text"},{"role":"AXStaticText","text":"Command Succeeded","depth":12,"role_description":"text"},{"role":"AXButton","text":"Getting started with Claude agent SDK","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Session history","depth":18,"help_text":"Session history","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New session","depth":18,"help_text":"New session","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"how to start it","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Let me check what's in your working directory to understand what you're referring to.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"app\ndata\ndb.sqlite\npipes\n#recycle\n[rerun: b1]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"cli.py\nconsumers\ndb.py\ndocker-compose.yml\nDockerfile\nmain.py\nrequirements.txt\nstatic\nai-habits\nday-recap\nmeeting-summary\nstandup-update\ntime-breakdown\nvideo-export\n[rerun: b2]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"docker-compose.yml","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker-compose.yml","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"This is a Screenpipe app with a Docker Compose setup. To start it:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app\ndocker compose up -d","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"This builds the image (first run) and starts the container in the background","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"The app will be accessible at","depth":23,"role_description":"text"},{"role":"AXLink","text":"http://your-server-ip:8766","depth":24,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"http://your-server-ip:8766","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"To check if it's running:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker compose ps","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"To view logs:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker compose logs -f","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Make sure an","depth":22,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"file exists in","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"before starting — the compose file references one (","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"env_file: .env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"). If it's missing, the container will fail to start.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app/.env 2>/dev/null && echo \"exists\" || echo \"MISSING\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/.env\nexists\n[rerun: b3]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"The","depth":22,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"file exists, so you're good to go. Just run:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app && docker compose up -d","depth":24,"role_description":"text"},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"docker-compose.yml","depth":22,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker-compose.yml","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"I opened it but there are no data after I coppied it there. the idea behind this app is to have the data pasted form screenpipe mac app and only query it and work with it","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Let me check the current state of the data.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls -lh /volume1/screenpipe/db.sqlite && ls /volume1/screenpipe/data/ | head -20","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"-rwxrwxrwx 1 Adm1n admin 423M Apr 13 17:20 /volume1/screenpipe/db.sqlite\n2026-04-09\n2026-04-11\n2026-04-12\n[rerun: b1]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \".tables\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"_sqlx_migrations meetings \naudio_chunks memories \naudio_tags memories_fts \naudio_transcriptions memories_fts_config \naudio_transcriptions_fts memories_fts_data \naudio_transcriptions_fts_config memories_fts_docsize \naudio_transcriptions_fts_data memories_fts_idx \naudio_transcriptions_fts_docsize ocr_text \naudio_transcriptions_fts_idx pipe_executions \nelements pipe_scheduler_state \nelements_fts speaker_embeddings \nelements_fts_config speakers \nelements_fts_data tags \nelements_fts_docsize ui_events \nelements_fts_idx ui_events_fts \nframes ui_events_fts_config \nframes_fts ui_events_fts_data \nframes_fts_config ui_events_fts_docsize \nframes_fts_content ui_events_fts_idx \nframes_fts_data video_chunks \nframes_fts_docsize vision_tags \nframes_fts_idx\n[rerun: b2]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \"SELECT COUNT(*) FROM frames; SELECT COUNT(*) FROM ocr_text; SELECT COUNT(*) FROM audio_transcriptions;\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"6923\n5464\n3\n[rerun: b3]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"The data is there — 423MB database with 6,923 frames and 5,464 OCR records. The app just isn't running yet. Let me check what the app actually does and whether it can query this data properly.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"main.py","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"main.py","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"db.py","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"db.py","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"The data is actually there — the database has 423MB of data. The app just needs to be started. Let me start it:","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app && docker compose up -d 2>&1","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Exit code 1\npermission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Get \"http://%2Fvar%2Frun%2Fdocker.sock/v1.45/containers/json?all=1&filters=%7B%22label%22%3A%7B%22com.docker.compose.config-hash%22%3Atrue%2C%22com.docker.compose.project%3Dapp%22%3Atrue%7D%7D\": dial unix /var/run/docker.sock: connect: permission denied\n[rerun: b4]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d 2>&1","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Exit code 1\nsudo: a terminal is required to read the password; either use the -S option to read from standard input or configure an askpass helper\nsudo: a password is required\n[rerun: b5]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"groups && id","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"admin users ughomeusers Media Social\nuid=1000(Adm1n) gid=10(admin) groups=10(admin),100(users),133(ughomeusers),1001(Media),1002(Social)\n[rerun: b6]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"You need to run Docker with elevated privileges. You're not in the","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"docker","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"group. There are two options:","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Option 1 — Run via Synology's Container Manager (DSM GUI)","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Open DSM → Container Manager → Project → Create project → point it to","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/docker-compose.yml","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Option 2 — Add yourself to the docker group (requires admin/root once)","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Open an SSH terminal as root (or via DSM terminal with admin):","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"sudo synogroup --add docker Adm1n\n# then log out and back in, then:\ncd /volume1/screenpipe/app && docker compose up -d","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Option 3 — Run it directly from an SSH session with sudo","depth":23,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"ssh admin@your-nas-ip\nsudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Once running, the dashboard will be at","depth":22,"role_description":"text"},{"role":"AXLink","text":"http://your-nas-ip:8766","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"http://your-nas-ip:8766","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"and it will query the data you already copied — the database has 6,923 frames and 5,464 OCR records ready to go.","depth":22,"role_description":"text"},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"docker-compose.yml","depth":22,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker-compose.yml","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"I have ugos ugreen nas. I can see the ui but it is empty. No data. Also when I open it there is defsault today, lets make default yesterday.","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Let me check why data isn't showing and look at the frontend.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \"SELECT DATE(timestamp) as d, COUNT(*) FROM frames GROUP BY d ORDER BY d DESC LIMIT 10;\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"2026-04-13|2643\n2026-04-12|2455\n2026-04-11|1302\n2026-04-09|523\n[rerun: b1]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app/static/","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"index.html\n[rerun: b2]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"wc -l /volume1/screenpipe/app/static/index.html","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"1048 /volume1/screenpipe/app/static/index.html\n[rerun: b3]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"grep -n \"today\\|new Date\\|date\\|default\" /volume1/screenpipe/app/static/index.html | head -40","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"24:input[type=\"date\"] {\n71:.sess-segment:hover { opacity: 0.8; cursor: default; }\n179:button:disabled { opacity: 0.4; cursor: default; }\n276: <input type=\"date\" id=\"datePicker\" onchange=\"refresh()\">\n336: <select id=\"sSrc\" onchange=\"updateSourceHint()\">\n356: <input type=\"date\" id=\"sDate\">\n388: <div id=\"workReportOut\"><div class=\"empty\">Click Generate Report to build a structured work summary for the selected date.</div></div>\n398: <option value=\"standup\">Standup Update</option>\n453:const dp = document.getElementById('datePicker');\n454:dp.value = new Date().toISOString().slice(0,10);\n525: // Re-render bars to update selection highlight\n679: const bucket = Math.floor(new Date(r.timestamp).getTime() / (everyMin * 60000));\n710:function updateSourceHint() {\n721: updateSourceHint();\n797: if (!rows.length) { el.innerHTML = '<div class=\"empty\">No audio for this date.</div>'; return; }\n835: try { return new Date(ts).toLocaleTimeString([],{hour:'2-digit',minute:'2-digit'}); }\n885: const spanMs = new Date(s.day_end) - new Date(s.day_start);\n891: const left = (new Date(seg.start) - new Date(s.day_start)) / spanMs * 100;\n892: const width = (new Date(seg.end) - new Date(seg.start)) / spanMs * 100;\n899: const left = (new Date(brk.start) - new Date(s.day_start)) / spanMs * 100;\n900: const width = (new Date(brk.end) - new Date(brk.start)) / spanMs * 100;\n[rerun: b4]","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \"SELECT timestamp FROM frames ORDER BY timestamp DESC LIMIT 3; SELECT timestamp FROM frames ORDER BY timestamp ASC LIMIT 3;\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"2026-04-13T14:19:10.998594+00:00\n2026-04-13T14:19:08.686883+00:00\n2026-04-13T14:19:06.581255+00:00\n2026-04-09T16:53:09.043761+00:00\n2026-04-09T16:53:19.073971+00:00\n2026-04-09T16:53:20.618409+00:00\n[rerun: b5]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"index.html","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"index.html","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"(lines 451-480)","depth":23,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"curl -s \"http://localhost:8766/api/stats?d=2026-04-13\" 2>&1 | head -50","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"{\"date\":\"2026-04-13\",\"total_frames\":0,\"first_seen\":null,\"last_seen\":null,\"unique_apps\":0,\"audio_segments\":0,\"ui_events\":0}\n[rerun: b6]","depth":23,"role_description":"text"}]...
|
-397184505142897105
|
-8263927955074673023
|
idle
|
accessibility
|
NULL
|
Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧ Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧G)
Run and Debug (⇧⌘D)
Remote Explorer
Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update
2
Claude Code
Containers
EXPLORER
EXPLORER
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
SCREENPIPE [SSH: [IP_ADDRESS]]
#recycle
app
__pycache__
consumers
static
.env
cli.py
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
data
pipes
db.sqlite
db.sqlite-shm
db.sqlite-wal
Outline Section
OUTLINE
OUTLINE
Timeline Section
TIMELINE
TIMELINE
pipe.md, Editor Group 1
Untitled-2, Editor Group 1
docker-compose.yml, preview, Editor Group 1
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
Getting started with Cla…, Editor Group 2
Problems (⇧⌘M)
PROBLEMS
Output (⇧⌘U)
OUTPUT
Debug Console (⇧⌘Y)
DEBUG CONSOLE
Terminal (⌃`)
TERMINAL
Ports
PORTS
remote SSH: [IP_ADDRESS]
SSH: [IP_ADDRESS]
No Problems
0
0
No Ports Forwarded
0
Notifications
Sign In
Sign In
Screen Reader Optimized
Info: Setting up SSH Host [IP_ADDRESS]: Setting up SSH tunnel
Command Succeeded
Getting started with Claude agent SDK
Session history
New session
Message actions
how to start it
Thinking
Thinking
Let me check what's in your working directory to understand what you're referring to.
Bash
IN
ls /volume1/screenpipe
Copy code to clipboard
OUT
app
data
db.sqlite
pipes
#recycle
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes
Copy code to clipboard
OUT
cli.py
consumers
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
static
ai-habits
day-recap
meeting-summary
standup-update
time-breakdown
video-export
[rerun: b2]
Read
docker-compose.yml
docker-compose.yml
This is a Screenpipe app with a Docker Compose setup. To start it:
Copy code to clipboard
cd /volume1/screenpipe/app
docker compose up -d
This builds the image (first run) and starts the container in the background
The app will be accessible at
[URL_WITH_CREDENTIALS]
sudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d
Once running, the dashboard will be at
http://your-nas-ip:8766
http://your-nas-ip:8766
and it will query the data you already copied — the database has 6,923 frames and 5,464 OCR records ready to go.
Message actions
docker-compose.yml
docker-compose.yml
I have ugos ugreen nas. I can see the ui but it is empty. No data. Also when I open it there is defsault today, lets make default yesterday.
Thinking
Thinking
Let me check why data isn't showing and look at the frontend.
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT DATE(timestamp) as d, COUNT(*) FROM frames GROUP BY d ORDER BY d DESC LIMIT 10;"
Copy code to clipboard
OUT
2026-04-13|2643
2026-04-12|2455
2026-04-11|1302
2026-04-09|523
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app/static/
Copy code to clipboard
OUT
index.html
[rerun: b2]
Bash
IN
wc -l /volume1/screenpipe/app/static/index.html
Copy code to clipboard
OUT
1048 /volume1/screenpipe/app/static/index.html
[rerun: b3]
Bash
IN
grep -n "today\|new Date\|date\|default" /volume1/screenpipe/app/static/index.html | head -40
Copy code to clipboard
OUT
24:input[type="date"] {
71:.sess-segment:hover { opacity: 0.8; cursor: default; }
179:button:disabled { opacity: 0.4; cursor: default; }
276: <input type="date" id="datePicker" onchange="refresh()">
336: <select id="sSrc" onchange="updateSourceHint()">
356: <input type="date" id="sDate">
388: <div id="workReportOut"><div class="empty">Click Generate Report to build a structured work summary for the selected date.</div></div>
398: <option value="standup">Standup Update</option>
453:const dp = document.getElementById('datePicker');
454:dp.value = new Date().toISOString().slice(0,10);
525: // Re-render bars to update selection highlight
679: const bucket = Math.floor(new Date(r.timestamp).getTime() / (everyMin * 60000));
710:function updateSourceHint() {
721: updateSourceHint();
797: if (!rows.length) { el.innerHTML = '<div class="empty">No audio for this date.</div>'; return; }
835: try { return new Date(ts).toLocaleTimeString([],{hour:'2-digit',minute:'2-digit'}); }
885: const spanMs = new Date(s.day_end) - new Date(s.day_start);
891: const left = (new Date(seg.start) - new Date(s.day_start)) / spanMs * 100;
892: const width = (new Date(seg.end) - new Date(seg.start)) / spanMs * 100;
899: const left = (new Date(brk.start) - new Date(s.day_start)) / spanMs * 100;
900: const width = (new Date(brk.end) - new Date(brk.start)) / spanMs * 100;
[rerun: b4]
Thinking
Thinking
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT timestamp FROM frames ORDER BY timestamp DESC LIMIT 3; SELECT timestamp FROM frames ORDER BY timestamp ASC LIMIT 3;"
Copy code to clipboard
OUT
2026-04-13T14:19:10.998594+00:00
2026-04-13T14:19:08.686883+00:00
2026-04-13T14:19:06.581255+00:00
2026-04-09T16:53:09.043761+00:00
2026-04-09T16:53:19.073971+00:00
2026-04-09T16:53:20.618409+00:00
[rerun: b5]
Read
index.html
index.html
(lines 451-480)
Thinking
Thinking
Bash
IN
curl -s "http://localhost:8766/api/stats?d=2026-04-13" 2>&1 | head -50
Copy code to clipboard
OUT
{"date":"2026-04-13","total_frames":0,"first_seen":null,"last_seen":null,"unique_apps":0,"audio_segments":0,"ui_events":0}
[rerun: b6]...
|
7564
|
|
7566
|
141
|
10
|
2026-04-13T16:06:09.917904+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096369917_m1.jpg...
|
Firefox
|
Screenpipe Dashboard — Personal
|
True
|
http://100.73.206.126:8766
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Close tab
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Screenpipe
Screenpipe
Activity
Search
Audio
Work Report
AI Summary
Date
12
/
04
/
2026
Calendar
Red plus
Search
Source
App
any app
Date
dd
/
mm
/
yyyy
Calendar
(blank = all dates)
From
--
:
--
To
--
:
--
FTS tip: single words work best · "exact phrase" · term1 OR term2
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:2000 GB3000 Gb4000 Gb6000 GB8000 Gb6твwestem...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gbb000 GbSOO0 GHОтвwestemn...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...
18:29 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:29 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:28 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:25 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:23 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:23 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:18 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:18 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:17 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
15:53 ·
QuickTime Player
/ compact_monitor_1_1775908431491.mp4
...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: "WD
Red
Plus
6TB", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: "
Red
Plus
6TB", limit...
15:53 ·
QuickTime Player
/ compact_monitor_1_1775908431491.mp4
...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: "WD
Red
Plus
6TB", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: "
Red
Plus
6TB", limit...
15:53 ·
QuickTime Player
/ compact_monitor_1_1775908431491.mp4
...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: "WD
Red
Plus
6TB", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: "
Red
Plus
6TB", limit...
21:25 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:25 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:25 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:24 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:21 ·
iTerm2
/ ⠐ Research Western Digital Red Plus pricing
...⏺...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Inbox - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Shameless • HBO Max","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Shameless • HBO Max","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Mute tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Machines - Tailscale","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Machines - Tailscale","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe Dashboard","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Screenpipe Dashboard","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Pazaruvaj.com — Знак, че е време за най-добрите оферти","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pazaruvaj.com — Знак, че е време за най-добрите оферти","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"google maps timeline export - Google Search","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"google maps timeline export - Google Search","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Screenpipe","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Screenpipe","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Activity","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Search","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Audio","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Work Report","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"AI Summary","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Date","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"12","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"04","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2026","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Calendar","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Red plus","depth":8,"value":"Red plus","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Search","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Source","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"App","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXComboBox","text":"any app","depth":8,"help_text":"","role_description":"combo box","subrole":"AXUnknown","is_enabled":true,"is_focused":true,"is_selected":false},{"role":"AXStaticText","text":"Date","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"dd","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"mm","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"yyyy","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Calendar","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"(blank = all dates)","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"From","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":":","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"To","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":":","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"--","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"FTS tip: single words work best · \"exact phrase\" · term1 OR term2","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:39","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:2000 GB3000 Gb4000 Gb6000 GB8000 Gb6твwestem...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:39","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gbb000 GbSOO0 GHОтвwestemn...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:39","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11:39","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:29 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...21:19 · iTerm2 / ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...was the cheapest Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...20) ⏺ screenpipe...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:29 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...21:19 · iTerm2 / ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...was the cheapest Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...20) ⏺ screenpipe...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:28 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:26 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:26 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:26 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:25 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:23 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:23 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:19 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:19 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:19 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...21:19 · iTerm2 / ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...was the cheapest Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ...20) ⏺ screenpipe...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:18 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:18 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18:17 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Firefox","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ Screenpipe Dashboard — Personal","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"http://100.73.206.126:8766","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...New Tab ✳ Claude Code ⠂ Find cheapest WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB price ⠂ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing ⠐ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"pricing Personal: GitHub - scree… ✳ Research Western Digital","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"15:53 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"QuickTime Player","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ compact_monitor_1_1775908431491.mp4","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: \"WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB\", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: \"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB\", limit...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"15:53 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"QuickTime Player","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ compact_monitor_1_1775908431491.mp4","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: \"WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB\", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: \"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB\", limit...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"15:53 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"QuickTime Player","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ compact_monitor_1_1775908431491.mp4","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: \"WD","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB\", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: \"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6TB\", limit...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:25 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ -zsh","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:25 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ -zsh","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:25 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ -zsh","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:24 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ -zsh","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Red","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plus","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21:21 ·","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"iTerm2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/ ⠐ Research Western Digital Red Plus pricing","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"...⏺","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
7188413380768688586
|
-2923109529450544240
|
idle
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Close tab
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Screenpipe
Screenpipe
Activity
Search
Audio
Work Report
AI Summary
Date
12
/
04
/
2026
Calendar
Red plus
Search
Source
App
any app
Date
dd
/
mm
/
yyyy
Calendar
(blank = all dates)
From
--
:
--
To
--
:
--
FTS tip: single words work best · "exact phrase" · term1 OR term2
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:2000 GB3000 Gb4000 Gb6000 GB8000 Gb6твwestem...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gbb000 GbSOO0 GHОтвwestemn...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...
11:39
...
Red
Plus
3.5 6TB 5400rpm 256MB SATA3(WD60EFPX) Описание: Високопроизводител ни външни hdd дискове,създадени за надеждност и енергийна... Пълно описаниеВарианти на продукта:1000 Gb3000 Gb4000 Gb6000 GB8000 Gb6твWester...
18:29 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:29 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:28 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:26 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:25 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:23 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:23 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:19 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...21:19 · iTerm2 / ⠂ Research Western Digital
Red
Plus
pricing ...was the cheapest Western Digital
Red
Plus
? Western Digital ... 21:20 · iTerm2 / ⠐ Research Western Digital
Red
Plus
pricing ...20) ⏺ screenpipe...
18:18 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:18 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
18:17 ·
Firefox
/ Screenpipe Dashboard — Personal
http://[IP_ADDRESS]:8766
...New Tab ✳ Claude Code ⠂ Find cheapest WD
Red
Plus
6TB price ⠂ Research Western Digital
Red
Plus
pricing ⠐ Research Western Digital
Red
Plus
pricing Personal: GitHub - scree… ✳ Research Western Digital
Red
...
15:53 ·
QuickTime Player
/ compact_monitor_1_1775908431491.mp4
...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: "WD
Red
Plus
6TB", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: "
Red
Plus
6TB", limit...
15:53 ·
QuickTime Player
/ compact_monitor_1_1775908431491.mp4
...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: "WD
Red
Plus
6TB", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: "
Red
Plus
6TB", limit...
15:53 ·
QuickTime Player
/ compact_monitor_1_1775908431491.mp4
...Let me try the keyword search tool instead.#rec1910 • screenpipe - Keyword Search (MCP)(q: "WD
Red
Plus
6TB", limit: 20)CODECompl• screenpipe - Keyword Search (MCP)(q: "
Red
Plus
6TB", limit...
21:25 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:25 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:25 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:24 ·
iTerm2
/ -zsh
...⏺
Red
Plus
Red
Plus
...
21:21 ·
iTerm2
/ ⠐ Research Western Digital Red Plus pricing
...⏺...
|
NULL
|
|
7568
|
141
|
12
|
2026-04-13T16:06:15.764159+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096375764_m1.jpg...
|
Firefox
|
google maps timeline export - Google Search — Pers google maps timeline export - Google Search — Personal...
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
Close tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Accessibility help
Accessibility help
Accessibility feedback
Accessibility feedback
Go to Google Home
google maps timeline export
google maps timeline export
Clear
Search by voice
Search by image
Search
Google apps
Google Account: Lukáš Koválik ([EMAIL])
AI Mode
AI Mode
All
All
Images
Images
Videos
Videos
Forums
Forums
News
News
Web
Web
More filters
More
Tools
Tools
Add Free
Free
Add Reddit
Reddit
Add To Excel
To Excel
Add GPX
GPX
Add Ios
Ios
Add To KML
To KML
Add Android
Android
Search Results
Search Results
AI Overview
AI Overview
About this result
Exporting Google Maps Timeline data is now primarily done on-device via Android settings, as location history has moved from cloud storage to local device storage
.
Navigate to
Settings > Location > Location services > Timeline
and tap "Export timeline data" to save a local JSON file
. This ensures you have a backup of your visited places and routes.
Google Help (+4) – View related links
Google Help
+4
How to Export Timeline Data
Android (On-Device):
Export timeline data. Opens in new tab.
Export timeline data
Dec 28, 2024 —
To export timeline data from Google Maps on an Android device, you can do the following: 1. Go to **Device settings** 2. Select **
About this result
Export Google Maps Timeline Data on Android : r/GoogleMaps. Opens in new tab.
Export Google Maps Timeline Data on Android : r/GoogleMaps
May 1, 2024 —
To export Google Maps timeline data on Android, you can do the following: 1. Go to **Settings** 2. Select **Location** 3. Select *
Show more AI Overview
Show more
Web results
Web results
Export timeline data - Google Maps Community Google Help https://support.google.com › maps › thread › export-tim...
Export timeline data - Google Maps Community
Export timeline data - Google Maps Community
Google Help
https://support.google.com
› maps › thread › export-tim...
About this result
Dec 28, 2024
—
welcome to the google maps community forum! for android, it is
device settings > location > location services > timeline > export timeline data
, ...
1 answer
1 answer
·
Top answer:
hello mark, welcome to the google maps community forum! for android, it is device settings > location > location services > timeline > export timeline ...
Export Google Maps Timeline Data on Android Reddit · r/GoogleMaps 100+ comments · 1 year ago
Export Google Maps Timeline Data on Android
Export Google Maps Timeline Data on Android
Reddit · r/GoogleMaps
100+ comments · 1 year ago
About this result
If you are on Android,
go to Settings -> Location -> Timeline -> Export
. This totally worked for me! The exported json file has ...
How Can I Properly Export my Timeline Data : r ...
How Can I Properly
Export
my
Timeline
Data : r ...
5 posts
Mar 27, 2025
Anyone know how i can export my old timeline with ...
Anyone know how i can
export
my old
timeline
with ...
9 posts
Feb 23, 2025
More results from www.reddit.com
More results from www.reddit.com
Videos
Videos
About this result
MileageWise 2025 Updated Google Maps Timeline Export from ... YouTube MileageWise - IRS-proof mileage log Apr 11, 2025
MileageWise 2025 Updated Google Maps Timeline Export from ... YouTube MileageWise - IRS-proof mileage log Apr 11, 2025
MileageWise 2025 Updated Google Maps Timeline Export from ...
YouTube
MileageWise - IRS-proof mileage log
Apr 11, 2025
About this result
MileageWise 2025 Updated Google Maps Timeline Export from ... by MileageWise - IRS-proof mileage log on YouTube. Play on Google. 3:00
6 key moments in this video
6 key moments in this video
Transfer Your Google Maps Timeline History: Don't Lose Your Data! YouTube Geeks On Tour Mar 22, 2025
Transfer Your Google Maps Timeline History: Don't Lose Your Data! YouTube Geeks On Tour Mar 22, 2025
Transfer Your Google Maps Timeline History: Don't Lose Your Data!
YouTube
Geeks On Tour
Mar 22, 2025
About this result
Transfer Your Google Maps Timeline History: Don't Lose Your Data! by Geeks On Tour on YouTube. Play on Google. 5:16
Free Google Maps Timeline Export to Excel YouTube Ákos Barazsy Jun 6, 2023
Free Google Maps Timeline Export to Excel YouTube Ákos Barazsy Jun 6, 2023
Free Google Maps Timeline Export to Excel
YouTube
Ákos Barazsy
Jun 6, 2023
About this result
Free Google Maps Timeline Export to Excel by Ákos Barazsy on YouTube. Play on Google. 1:46
View all videos
View all
People also ask
People also ask
Can I export Google timeline to Excel?
Can I export Google timeline to Excel?
How do I transfer a Google map timeline?
How do I transfer a Google map timeline?
Can Google Timeline be downloaded?
Can Google Timeline be downloaded?
How to get Google Maps timeline on PC?
How to get Google Maps timeline on PC?
Web results
Web results
Manage your Google Maps Timeline - Android Google Help https://support.google.com › maps › answer
Manage your Google Maps Timeline - Android
Manage your Google Maps Timeline - Android
Google Help
https://support.google.com
› maps › answer
About this result
Timeline. Under “Timeline,” tap Export Timeline data. Tap Continue.
Select your preferred storage location
. Tap Save. After the export completes, a popup ...
Free Google Maps Timeline Export to Excel - Chrome Web Store Chrome Web Store https://chromewebstore.google.com › detail › mjjpapfc...
Free Google Maps Timeline Export to Excel - Chrome Web Store
Free Google Maps Timeline Export to Excel - Chrome Web Store
Chrome Web Store
https://chromewebstore.google.com
› detail › mjjpapfc...
About this result
Export your trips and mileage from Google Maps Timeline to Excel
for your mileage tax deduction. This Chrome extension enables generating mileage and time ...
Discussions and forums
Discussions and forums
How Can I Properly Export my Timeline Data Reddit · r/GoogleMaps · 5 comments · 1 year ago
How Can I Properly Export my Timeline Data
How Can I Properly Export my Timeline Data
How Can I Properly Export my Timeline Data
Reddit
·
r/GoogleMaps
·
5 comments
·
1 year ago
·
About this result
How Can I Properly Export my Timeline Data Reddit · r/GoogleMaps · 5 comments · 1 year ago
The takeout steps you listed will not give you any meaningful timeline data since that's what's ... More Top answer · a year ago
This worked perfectly, thank you More a year ago
How can I export my Location History now that this data is only stored ... Android Enthusiasts Stack Exchange · 1 year ago
How can I export my Location History now that this data is only stored ...
How can I export my Location History now that this data is only stored ...
How can I export my Location History now that this data is only stored ...
Android Enthusiasts Stack Exchange
·
1 year ago
·
About this result
How can I export my Location History now that this data is only stored ... Android Enthusiasts Stack Exchange · 1 year ago
Export Google Maps timeline? GrapheneOS Discussion Forum · 8 months ago
Export Google Maps timeline?
Export Google Maps timeline?
Export Google Maps timeline?
GrapheneOS Discussion Forum
·
8 months ago...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Inbox - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Shameless • HBO Max","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Shameless • HBO Max","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Mute tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Machines - Tailscale","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Machines - Tailscale","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe Dashboard","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe Dashboard","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pazaruvaj.com — Знак, че е време за най-добрите оферти","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pazaruvaj.com — Знак, че е време за най-добрите оферти","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"google maps timeline export - Google Search","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"google maps timeline export - Google Search","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Skip to main content","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip to main content","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Accessibility help","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Accessibility help","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Accessibility feedback","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Accessibility feedback","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Go to Google Home","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXComboBox","text":"google maps timeline export","depth":9,"value":"google maps timeline export","help_text":"","role_description":"combo box","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"google maps timeline export","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Clear","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Search by voice","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Search by image","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Search","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Google apps","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXMenuButton","text":"Google Account: Lukáš Koválik (kovaliklukas@gmail.com)","depth":8,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"AI Mode","depth":16,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"AI Mode","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"All","depth":16,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":false,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"All","depth":19,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Images","depth":16,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Images","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Videos","depth":16,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Videos","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Forums","depth":16,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Forums","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"News","depth":16,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"News","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Web","depth":16,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Web","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More filters","depth":16,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"More","depth":19,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Tools","depth":15,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Tools","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Add Free","depth":14,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Free","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Add Reddit","depth":14,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Reddit","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Add To Excel","depth":14,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"To Excel","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Add GPX","depth":14,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"GPX","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Add Ios","depth":14,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Ios","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Add To KML","depth":15,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"To KML","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Add Android","depth":15,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Android","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Search Results","depth":8,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Search Results","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"AI Overview","depth":20,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"AI Overview","depth":21,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"About this result","depth":21,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Exporting Google Maps Timeline data is now primarily done on-device via Android settings, as location history has moved from cloud storage to local device storage","depth":25,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":".","depth":25,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Navigate to","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Settings > Location > Location services > Timeline","depth":27,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"and tap \"Export timeline data\" to save a local JSON file","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":". This ensures you have a backup of your visited places and routes.","depth":25,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Google Help (+4) – View related links","depth":25,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Google Help","depth":29,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+4","depth":29,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"How to Export Timeline Data","depth":26,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Android (On-Device):","depth":27,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Export timeline data. Opens in new tab.","depth":28,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Export timeline data","depth":29,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Dec 28, 2024 —","depth":29,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"To export timeline data from Google Maps on an Android device, you can do the following: 1. Go to **Device settings** 2. Select **","depth":29,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"About this result","depth":28,"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Export Google Maps Timeline Data on Android : r/GoogleMaps. Opens in new tab.","depth":28,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Export Google Maps Timeline Data on Android : r/GoogleMaps","depth":29,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"May 1, 2024 —","depth":29,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"To export Google Maps timeline data on Android, you can do the following: 1. Go to **Settings** 2. Select **Location** 3. Select *","depth":29,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Show more AI Overview","depth":18,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Show more","depth":20,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Web results","depth":15,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Web results","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Export timeline data - Google Maps Community Google Help https://support.google.com › maps › thread › export-tim...","depth":16,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Export timeline data - Google Maps Community","depth":17,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Export timeline data - Google Maps Community","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Google Help","depth":21,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"https://support.google.com","depth":21,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"› maps › thread › export-tim...","depth":22,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"About this result","depth":16,"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Dec 28, 2024","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"—","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"welcome to the google maps community forum! for android, it is","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"device settings > location > location services > timeline > export timeline data","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", ...","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"1 answer","depth":16,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"1 answer","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"·","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Top answer:","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"hello mark, welcome to the google maps community forum! for android, it is device settings > location > location services > timeline > export timeline ...","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Export Google Maps Timeline Data on Android Reddit · r/GoogleMaps 100+ comments · 1 year ago","depth":16,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Export Google Maps Timeline Data on Android","depth":17,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Export Google Maps Timeline Data on Android","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Reddit · r/GoogleMaps","depth":21,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"100+ comments · 1 year ago","depth":21,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"About this result","depth":16,"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"If you are on Android,","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"go to Settings -> Location -> Timeline -> Export","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":". This totally worked for me! The exported json file has ...","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"How Can I Properly Export my Timeline Data : r ...","depth":18,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"How Can I Properly","depth":19,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Export","depth":20,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"my","depth":19,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Timeline","depth":20,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Data : r ...","depth":19,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"5 posts","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Mar 27, 2025","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Anyone know how i can export my old timeline with ...","depth":18,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Anyone know how i can","depth":19,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"export","depth":20,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"my old","depth":19,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"timeline","depth":20,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"with ...","depth":19,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"9 posts","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Feb 23, 2025","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"More results from www.reddit.com","depth":18,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"More results from www.reddit.com","depth":19,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Videos","depth":15,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Videos","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"About this result","depth":17,"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"MileageWise 2025 Updated Google Maps Timeline Export from ... YouTube MileageWise - IRS-proof mileage log Apr 11, 2025","depth":18,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"MileageWise 2025 Updated Google Maps Timeline Export from ... YouTube MileageWise - IRS-proof mileage log Apr 11, 2025","depth":19,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"MileageWise 2025 Updated Google Maps Timeline Export from ...","depth":22,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"YouTube","depth":21,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"MileageWise - IRS-proof mileage log","depth":21,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Apr 11, 2025","depth":21,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"About this result","depth":19,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"MileageWise 2025 Updated Google Maps Timeline Export from ... by MileageWise - IRS-proof mileage log on YouTube. Play on Google. 3:00","depth":18,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"6 key moments in this video","depth":20,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"6 key moments in this video","depth":22,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Transfer Your Google Maps Timeline History: Don't Lose Your Data! YouTube Geeks On Tour Mar 22, 2025","depth":18,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Transfer Your Google Maps Timeline History: Don't Lose Your Data! YouTube Geeks On Tour Mar 22, 2025","depth":19,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Transfer Your Google Maps Timeline History: Don't Lose Your Data!","depth":22,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"YouTube","depth":21,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Geeks On Tour","depth":21,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Mar 22, 2025","depth":21,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"About this result","depth":19,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Transfer Your Google Maps Timeline History: Don't Lose Your Data! by Geeks On Tour on YouTube. Play on Google. 5:16","depth":18,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Free Google Maps Timeline Export to Excel YouTube Ákos Barazsy Jun 6, 2023","depth":18,"bounds":{"left":0.099305555,"top":0.0,"width":0.3361111,"height":0.09222222},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Free Google Maps Timeline Export to Excel YouTube Ákos Barazsy Jun 6, 2023","depth":19,"bounds":{"left":0.099305555,"top":0.0,"width":0.3361111,"height":0.09222222},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Free Google Maps Timeline Export to Excel","depth":22,"bounds":{"left":0.099305555,"top":0.0,"width":0.21458334,"height":0.023333333},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"YouTube","depth":21,"bounds":{"left":0.099305555,"top":0.0,"width":0.038194444,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ákos Barazsy","depth":21,"bounds":{"left":0.14375,"top":0.0,"width":0.061805554,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Jun 6, 2023","depth":21,"bounds":{"left":0.099305555,"top":0.017777778,"width":0.050694443,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"About this result","depth":19,"bounds":{"left":0.2013889,"top":0.0,"width":0.036111113,"height":0.022222223},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Free Google Maps Timeline Export to Excel by Ákos Barazsy on YouTube. Play on Google. 1:46","depth":18,"bounds":{"left":0.0,"top":0.0,"width":0.10277778,"height":0.09222222},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"View all videos","depth":16,"bounds":{"left":0.07986111,"top":0.05666667,"width":0.25833333,"height":0.044444446},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"View all","depth":18,"bounds":{"left":0.18194444,"top":0.06888889,"width":0.034722224,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"People also ask","depth":16,"bounds":{"left":0.0,"top":0.1411111,"width":0.104166664,"height":0.031111112},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"People also ask","depth":17,"bounds":{"left":0.0,"top":0.1411111,"width":0.104166664,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Can I export Google timeline to Excel?","depth":19,"bounds":{"left":0.0,"top":0.18111111,"width":0.45277777,"height":0.057777777},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Can I export Google timeline to Excel?","depth":22,"bounds":{"left":0.0,"top":0.19888888,"width":0.19166666,"height":0.023333333},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"How do I transfer a Google map timeline?","depth":19,"bounds":{"left":0.0,"top":0.24,"width":0.45277777,"height":0.057777777},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"How do I transfer a Google map timeline?","depth":22,"bounds":{"left":0.0,"top":0.25777778,"width":0.20833333,"height":0.023333333},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Can Google Timeline be downloaded?","depth":19,"bounds":{"left":0.0,"top":0.2988889,"width":0.45277777,"height":0.057777777},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Can Google Timeline be downloaded?","depth":22,"bounds":{"left":0.0,"top":0.31666666,"width":0.19027779,"height":0.023333333},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"How to get Google Maps timeline on PC?","depth":19,"bounds":{"left":0.0,"top":0.35777777,"width":0.45277777,"height":0.057777777},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"How to get Google Maps timeline on PC?","depth":22,"bounds":{"left":0.0,"top":0.37555555,"width":0.20555556,"height":0.023333333},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Web results","depth":15,"bounds":{"left":0.0,"top":0.48444444,"width":0.00069444446,"height":0.0011111111},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Web results","depth":16,"bounds":{"left":0.0,"top":0.48222223,"width":0.08263889,"height":0.027777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Manage your Google Maps Timeline - Android Google Help https://support.google.com › maps › answer","depth":16,"bounds":{"left":0.0,"top":0.4722222,"width":0.28541666,"height":0.054444443},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Manage your Google Maps Timeline - Android","depth":17,"bounds":{"left":0.0,"top":1.0,"width":0.28541666,"height":-0.01999998},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Manage your Google Maps Timeline - Android","depth":18,"bounds":{"left":0.0,"top":1.0,"width":0.28541666,"height":-0.02555561},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Google Help","depth":21,"bounds":{"left":0.010416667,"top":0.98,"width":0.054166667,"height":0.017777778},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"https://support.google.com","depth":21,"bounds":{"left":0.010416667,"top":1.0,"width":0.09791667,"height":-0.0022221804},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"› maps › answer","depth":22,"bounds":{"left":0.108333334,"top":1.0,"width":0.0625,"height":-0.0022221804},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"About this result","depth":16,"bounds":{"left":0.17638889,"top":0.99777776,"width":0.019444445,"height":0.00222224},"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Timeline. Under “Timeline,” tap Export Timeline data. Tap Continue.","depth":16,"bounds":{"left":0.0,"top":1.0,"width":0.2923611,"height":-0.061111093},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Select your preferred storage location","depth":17,"bounds":{"left":0.0,"top":1.0,"width":0.42777777,"height":-0.061111093},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":". Tap Save. After the export completes, a popup ...","depth":16,"bounds":{"left":0.02013889,"top":1.0,"width":0.21597221,"height":-0.08555555},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Free Google Maps Timeline Export to Excel - Chrome Web Store Chrome Web Store https://chromewebstore.google.com › detail › mjjpapfc...","depth":16,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Free Google Maps Timeline Export to Excel - Chrome Web Store","depth":17,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Free Google Maps Timeline Export to Excel - Chrome Web Store","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Chrome Web Store","depth":21,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"https://chromewebstore.google.com","depth":21,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"› detail › mjjpapfc...","depth":22,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"About this result","depth":16,"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Export your trips and mileage from Google Maps Timeline to Excel","depth":17,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"for your mileage tax deduction. This Chrome extension enables generating mileage and time ...","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Discussions and forums","depth":15,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Discussions and forums","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"How Can I Properly Export my Timeline Data Reddit · r/GoogleMaps · 5 comments · 1 year ago","depth":19,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"How Can I Properly Export my Timeline Data","depth":20,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"How Can I Properly Export my Timeline Data","depth":21,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"How Can I Properly Export my Timeline Data","depth":22,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Reddit","depth":22,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"·","depth":22,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"r/GoogleMaps","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"·","depth":25,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"5 comments","depth":25,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"·","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1 year ago","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"·","depth":21,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"About this result","depth":20,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"How Can I Properly Export my Timeline Data Reddit · r/GoogleMaps · 5 comments · 1 year ago","depth":17,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXLink","text":"The takeout steps you listed will not give you any meaningful timeline data since that's what's ... More Top answer · a year ago","depth":21,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"This worked perfectly, thank you More a year ago","depth":21,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"How can I export my Location History now that this data is only stored ... Android Enthusiasts Stack Exchange · 1 year ago","depth":19,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"How can I export my Location History now that this data is only stored ...","depth":20,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"How can I export my Location History now that this data is only stored ...","depth":21,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"How can I export my Location History now that this data is only stored ...","depth":22,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Android Enthusiasts Stack Exchange","depth":22,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"·","depth":22,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1 year ago","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"·","depth":21,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"About this result","depth":20,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"How can I export my Location History now that this data is only stored ... Android Enthusiasts Stack Exchange · 1 year ago","depth":17,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Export Google Maps timeline? GrapheneOS Discussion Forum · 8 months ago","depth":19,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Export Google Maps timeline?","depth":20,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Export Google Maps timeline?","depth":21,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Export Google Maps timeline?","depth":22,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"GrapheneOS Discussion Forum","depth":22,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"·","depth":22,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"8 months ago","depth":24,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
1357705395136012263
|
-6296718068506983731
|
click
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
Close tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Accessibility help
Accessibility help
Accessibility feedback
Accessibility feedback
Go to Google Home
google maps timeline export
google maps timeline export
Clear
Search by voice
Search by image
Search
Google apps
Google Account: Lukáš Koválik ([EMAIL])
AI Mode
AI Mode
All
All
Images
Images
Videos
Videos
Forums
Forums
News
News
Web
Web
More filters
More
Tools
Tools
Add Free
Free
Add Reddit
Reddit
Add To Excel
To Excel
Add GPX
GPX
Add Ios
Ios
Add To KML
To KML
Add Android
Android
Search Results
Search Results
AI Overview
AI Overview
About this result
Exporting Google Maps Timeline data is now primarily done on-device via Android settings, as location history has moved from cloud storage to local device storage
.
Navigate to
Settings > Location > Location services > Timeline
and tap "Export timeline data" to save a local JSON file
. This ensures you have a backup of your visited places and routes.
Google Help (+4) – View related links
Google Help
+4
How to Export Timeline Data
Android (On-Device):
Export timeline data. Opens in new tab.
Export timeline data
Dec 28, 2024 —
To export timeline data from Google Maps on an Android device, you can do the following: 1. Go to **Device settings** 2. Select **
About this result
Export Google Maps Timeline Data on Android : r/GoogleMaps. Opens in new tab.
Export Google Maps Timeline Data on Android : r/GoogleMaps
May 1, 2024 —
To export Google Maps timeline data on Android, you can do the following: 1. Go to **Settings** 2. Select **Location** 3. Select *
Show more AI Overview
Show more
Web results
Web results
Export timeline data - Google Maps Community Google Help https://support.google.com › maps › thread › export-tim...
Export timeline data - Google Maps Community
Export timeline data - Google Maps Community
Google Help
https://support.google.com
› maps › thread › export-tim...
About this result
Dec 28, 2024
—
welcome to the google maps community forum! for android, it is
device settings > location > location services > timeline > export timeline data
, ...
1 answer
1 answer
·
Top answer:
hello mark, welcome to the google maps community forum! for android, it is device settings > location > location services > timeline > export timeline ...
Export Google Maps Timeline Data on Android Reddit · r/GoogleMaps 100+ comments · 1 year ago
Export Google Maps Timeline Data on Android
Export Google Maps Timeline Data on Android
Reddit · r/GoogleMaps
100+ comments · 1 year ago
About this result
If you are on Android,
go to Settings -> Location -> Timeline -> Export
. This totally worked for me! The exported json file has ...
How Can I Properly Export my Timeline Data : r ...
How Can I Properly
Export
my
Timeline
Data : r ...
5 posts
Mar 27, 2025
Anyone know how i can export my old timeline with ...
Anyone know how i can
export
my old
timeline
with ...
9 posts
Feb 23, 2025
More results from www.reddit.com
More results from www.reddit.com
Videos
Videos
About this result
MileageWise 2025 Updated Google Maps Timeline Export from ... YouTube MileageWise - IRS-proof mileage log Apr 11, 2025
MileageWise 2025 Updated Google Maps Timeline Export from ... YouTube MileageWise - IRS-proof mileage log Apr 11, 2025
MileageWise 2025 Updated Google Maps Timeline Export from ...
YouTube
MileageWise - IRS-proof mileage log
Apr 11, 2025
About this result
MileageWise 2025 Updated Google Maps Timeline Export from ... by MileageWise - IRS-proof mileage log on YouTube. Play on Google. 3:00
6 key moments in this video
6 key moments in this video
Transfer Your Google Maps Timeline History: Don't Lose Your Data! YouTube Geeks On Tour Mar 22, 2025
Transfer Your Google Maps Timeline History: Don't Lose Your Data! YouTube Geeks On Tour Mar 22, 2025
Transfer Your Google Maps Timeline History: Don't Lose Your Data!
YouTube
Geeks On Tour
Mar 22, 2025
About this result
Transfer Your Google Maps Timeline History: Don't Lose Your Data! by Geeks On Tour on YouTube. Play on Google. 5:16
Free Google Maps Timeline Export to Excel YouTube Ákos Barazsy Jun 6, 2023
Free Google Maps Timeline Export to Excel YouTube Ákos Barazsy Jun 6, 2023
Free Google Maps Timeline Export to Excel
YouTube
Ákos Barazsy
Jun 6, 2023
About this result
Free Google Maps Timeline Export to Excel by Ákos Barazsy on YouTube. Play on Google. 1:46
View all videos
View all
People also ask
People also ask
Can I export Google timeline to Excel?
Can I export Google timeline to Excel?
How do I transfer a Google map timeline?
How do I transfer a Google map timeline?
Can Google Timeline be downloaded?
Can Google Timeline be downloaded?
How to get Google Maps timeline on PC?
How to get Google Maps timeline on PC?
Web results
Web results
Manage your Google Maps Timeline - Android Google Help https://support.google.com › maps › answer
Manage your Google Maps Timeline - Android
Manage your Google Maps Timeline - Android
Google Help
https://support.google.com
› maps › answer
About this result
Timeline. Under “Timeline,” tap Export Timeline data. Tap Continue.
Select your preferred storage location
. Tap Save. After the export completes, a popup ...
Free Google Maps Timeline Export to Excel - Chrome Web Store Chrome Web Store https://chromewebstore.google.com › detail › mjjpapfc...
Free Google Maps Timeline Export to Excel - Chrome Web Store
Free Google Maps Timeline Export to Excel - Chrome Web Store
Chrome Web Store
https://chromewebstore.google.com
› detail › mjjpapfc...
About this result
Export your trips and mileage from Google Maps Timeline to Excel
for your mileage tax deduction. This Chrome extension enables generating mileage and time ...
Discussions and forums
Discussions and forums
How Can I Properly Export my Timeline Data Reddit · r/GoogleMaps · 5 comments · 1 year ago
How Can I Properly Export my Timeline Data
How Can I Properly Export my Timeline Data
How Can I Properly Export my Timeline Data
Reddit
·
r/GoogleMaps
·
5 comments
·
1 year ago
·
About this result
How Can I Properly Export my Timeline Data Reddit · r/GoogleMaps · 5 comments · 1 year ago
The takeout steps you listed will not give you any meaningful timeline data since that's what's ... More Top answer · a year ago
This worked perfectly, thank you More a year ago
How can I export my Location History now that this data is only stored ... Android Enthusiasts Stack Exchange · 1 year ago
How can I export my Location History now that this data is only stored ...
How can I export my Location History now that this data is only stored ...
How can I export my Location History now that this data is only stored ...
Android Enthusiasts Stack Exchange
·
1 year ago
·
About this result
How can I export my Location History now that this data is only stored ... Android Enthusiasts Stack Exchange · 1 year ago
Export Google Maps timeline? GrapheneOS Discussion Forum · 8 months ago
Export Google Maps timeline?
Export Google Maps timeline?
Export Google Maps timeline?
GrapheneOS Discussion Forum
·
8 months ago...
|
NULL
|
|
7571
|
141
|
15
|
2026-04-13T16:06:21.966491+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096381966_m1.jpg...
|
Firefox
|
Pazaruvaj.com — Знак, че е време за най-добрите оф Pazaruvaj.com — Знак, че е време за най-добрите оферти — Personal...
|
True
|
www.pazaruvaj.com
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Отвори
Pazaruvaj.com - Надежден помощник за покупки, сравнение на цени и продуктови оферти
Какво търсите?
Изтрий
Търсене
Търсене
Затвори
Продукти
Намаления
Намаления
Електроника
Електроника
Информатика
Информатика
Здраве и красота
Здраве и красота
Битова техника
Битова техника
Дом и градина
Дом и градина
Автомобили, мотоциклети
Автомобили, мотоциклети
Строителство и ремонт
Строителство и ремонт
За офиса
За офиса
Спорт и фитнес
Спорт и фитнес
Още (11)
Още (11)
Най-предпочитани в Pazaruvaj
Най-предпочитани в Pazaruvaj
Detail produktu Apple iPhone 17 Pro Max 256GB
Apple iPhone 17 Pro Max 256GB
Apple iPhone 17 Pro Max 256GB
Apple iPhone 17 Pro Max 256GB
98 %
98
%
(
7x
7
x
)
Цена 2650,09 лв.
от
1354,97 €
от
2650,09 лв.
*
Detail produktu Apple iPhone 17 Pro Max 256GB
Apple iPhone 17 Pro Max 256GB
Detail produktu Sony PlayStation 5 (PS5) Slim Digital Edition
Sony PlayStation 5 (PS5) Slim Digital Edition
Sony PlayStation 5 (PS5) Slim Digital Edition
Sony PlayStation 5 (PS5) Slim Digital Edition
97 %
97
%
(
6x
6
x
)
Цена 868,39 лв.
от
444,00 €
от
868,39 лв.
*
Detail produktu Sony PlayStation 5 (PS5) Slim Digital Edition
Sony PlayStation 5 (PS5) Slim Digital Edition
Detail produktu Apple AirPods Pro 3 (MFHP4ZM)
Apple AirPods Pro 3 (MFHP4ZM)
Apple AirPods Pro 3 (MFHP4ZM)
Apple AirPods Pro 3 (MFHP4ZM)
92 %
92
%
(
5x
5
x
)
Цена 424,20 лв.
от
216,89 €
от
424,20 лв.
*
Detail produktu Apple AirPods Pro 3 (MFHP4ZM)
Apple AirPods Pro 3 (MFHP4ZM)
Detail produktu Dyson Airstrait 598960-01
Dyson Airstrait 598960-01
Dyson Airstrait 598960-01
Dyson Airstrait 598960-01
80 %
80
%
(
1x
1
x
)
Цена 956,40 лв.
от
489,00 €
от
956,40 лв.
*
Detail produktu Dyson Airstrait 598960-01
Dyson Airstrait 598960-01
Detail produktu Sony PlayStation 5 DualSense - Glacier White
Sony PlayStation 5 DualSense - Glacier White
Sony PlayStation 5 DualSense - Glacier White
Sony PlayStation 5 DualSense - Glacier White
99 %
99
%
(
74x
74
x
)
Цена 126,35 лв.
от
64,60 €
от
126,35 лв.
*
Detail produktu Sony PlayStation 5 DualSense - Glacier White
Sony PlayStation 5 DualSense - Glacier White
Detail produktu Ariston Clas One WiFi 24 kW (3302123)
Ariston Clas One WiFi 24 kW (3302123)
Ariston Clas One WiFi 24 kW (3302123)
Ariston Clas One WiFi 24 kW (3302123)
Цена 2530,00 лв.
1293,57 €
2530,00 лв.
*
Detail produktu Ariston Clas One WiFi 24 kW (3302123)
Ariston Clas One WiFi 24 kW (3302123)
Detail produktu AMD Ryzen 7 7800X3D 8-Core 4.2GHz AM5 Tray (100-000000910)
AMD Ryzen 7 7800X3D 8-Core 4.2GHz AM5 Tray (100-000000910)
AMD Ryzen 7 7800X3D 8-Core 4.2GHz AM5 Tray (100-000000910)
AMD Ryzen 7 7800X3D 8-Core 4.2GHz AM5 Tray (100-000000910)
99 %
99
%
(
26x
26
x
)
Цена 584,79 лв.
от
299,00 €
от
584,79 лв.
*
Detail produktu AMD Ryzen 7 7800X3D 8-Core 4.2GHz AM5 Tray (100-000000910)
AMD Ryzen 7 7800X3D 8-Core 4.2GHz AM5 Tray (100-000000910)
Detail produktu Samsung Galaxy Watch8 44mm (SM-L330)
Samsung Galaxy Watch8 44mm (SM-L330)
Samsung Galaxy Watch8 44mm (SM-L330)
Samsung Galaxy Watch8 44mm (SM-L330)
100 %
100
%
(
1x
1
x
)
Цена 430,28 лв.
от
220,00 €
от
430,28 лв.
*
Detail produktu Samsung Galaxy Watch8 44mm (SM-L330)
Samsung Galaxy Watch8 44mm (SM-L330)
Detail produktu DEWALT DCF887N-XJ
DEWALT DCF887N-XJ
DEWALT DCF887N-XJ
DEWALT DCF887N-XJ
100 %
100
%
(
13x
13
x
)
Цена 273,99 лв.
140,09 €
273,99 лв.
*
Detail produktu DEWALT DCF887N-XJ
DEWALT DCF887N-XJ
Detail produktu Xiaomi X20+ White (BHR8124EU)
Xiaomi X20+ White (BHR8124EU)
Xiaomi X20+ White (BHR8124EU)
Xiaomi X20+ White (BHR8124EU)
96 %
96
%
(
25x
25
x
)
Цена 700,19 лв.
от
358,00 €
от
700,19 лв.
*
Detail produktu Xiaomi X20+ White (BHR8124EU)
Xiaomi X20+ White (BHR8124EU)
Detail produktu Apple iPad 2025 128GB MD3Y4
Apple iPad 2025 128GB MD3Y4
Apple iPad 2025 128GB MD3Y4
Apple iPad 2025 128GB MD3Y4
100 %
100
%
(
4x
4
x
)
Цена 721,70 лв.
от
369,00 €
от
721,70 лв.
*
Detail produktu Apple iPad 2025 128GB MD3Y4
Apple iPad 2025 128GB MD3Y4
Detail produktu Kingston NV3 1TB (SNV3S/1000G)
Kingston NV3 1TB (SNV3S/1000G)
Kingston NV3 1TB (SNV3S/1000G)
Kingston NV3 1TB (SNV3S/1000G)
100 %
100
%
(
24x
24
x
)
Цена 111,29 лв.
от
56,90 €
от
111,29 лв.
*
Detail produktu Kingston NV3 1TB (SNV3S/1000G)
Kingston NV3 1TB (SNV3S/1000G)
Detail produktu Logitech G29 Driving Force Racing Wheel (941-000112)...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Inbox - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Shameless • HBO Max","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Shameless • HBO Max","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Mute tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Machines - Tailscale","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Machines - Tailscale","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe Dashboard","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe Dashboard","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Pazaruvaj.com — Знак, че е време за най-добрите оферти","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Pazaruvaj.com — Знак, че е време за най-добрите оферти","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"google maps timeline export - Google Search","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"google maps timeline export - Google Search","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New Tab","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Отвори","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Pazaruvaj.com - Надежден помощник за покупки, сравнение на цени и продуктови оферти","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXTextField","text":"Какво търсите?","depth":10,"help_text":"","role_description":"search text field","subrole":"AXSearchField","is_enabled":true,"is_focused":true,"is_selected":false},{"role":"AXButton","text":"Изтрий","depth":10,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Търсене","depth":10,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Търсене","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Затвори","depth":10,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Продукти","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Намаления","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Намаления","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Електроника","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Електроника","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Информатика","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Информатика","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Здраве и красота","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Здраве и красота","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Битова техника","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Битова техника","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Дом и градина","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Дом и градина","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Автомобили, мотоциклети","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Автомобили, мотоциклети","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Строителство и ремонт","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Строителство и ремонт","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"За офиса","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"За офиса","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Спорт и фитнес","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Спорт и фитнес","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Още (11)","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Още (11)","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Най-предпочитани в Pazaruvaj","depth":8,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Най-предпочитани в Pazaruvaj","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Detail produktu Apple iPhone 17 Pro Max 256GB","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Apple iPhone 17 Pro Max 256GB","depth":12,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Apple iPhone 17 Pro Max 256GB","depth":13,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Apple iPhone 17 Pro Max 256GB","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"98 %","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"98","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"%","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"7x","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"7","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"x","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Цена 2650,09 лв.","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"от","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1354,97 €","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"от","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2650,09 лв.","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"*","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Detail produktu Apple iPhone 17 Pro Max 256GB","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Apple iPhone 17 Pro Max 256GB","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Detail produktu Sony PlayStation 5 (PS5) Slim Digital Edition","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Sony PlayStation 5 (PS5) Slim Digital Edition","depth":12,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Sony PlayStation 5 (PS5) Slim Digital Edition","depth":13,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Sony PlayStation 5 (PS5) Slim Digital Edition","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"97 %","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"97","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"%","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"6x","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"6","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"x","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Цена 868,39 лв.","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"от","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"444,00 €","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"от","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"868,39 лв.","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"*","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Detail produktu Sony PlayStation 5 (PS5) Slim Digital Edition","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Sony PlayStation 5 (PS5) Slim Digital Edition","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Detail produktu Apple AirPods Pro 3 (MFHP4ZM)","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Apple AirPods Pro 3 (MFHP4ZM)","depth":12,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Apple AirPods Pro 3 (MFHP4ZM)","depth":13,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Apple AirPods Pro 3 (MFHP4ZM)","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"92 %","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"92","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"%","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"5x","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"5","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"x","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Цена 424,20 лв.","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"от","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"216,89 €","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"от","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"424,20 лв.","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"*","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Detail produktu Apple AirPods Pro 3 (MFHP4ZM)","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Apple AirPods Pro 3 (MFHP4ZM)","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Detail produktu Dyson Airstrait 598960-01","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Dyson Airstrait 598960-01","depth":12,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Dyson Airstrait 598960-01","depth":13,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Dyson Airstrait 598960-01","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"80 %","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"80","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"%","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"1x","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"1","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"x","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Цена 956,40 лв.","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"от","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"489,00 €","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"от","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"956,40 лв.","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"*","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Detail produktu Dyson Airstrait 598960-01","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Dyson Airstrait 598960-01","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Detail produktu Sony PlayStation 5 DualSense - Glacier White","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Sony PlayStation 5 DualSense - Glacier White","depth":12,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Sony PlayStation 5 DualSense - Glacier White","depth":13,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Sony PlayStation 5 DualSense - Glacier White","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"99 %","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"99","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"%","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"74x","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"74","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"x","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Цена 126,35 лв.","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"от","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"64,60 €","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"от","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"126,35 лв.","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"*","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Detail produktu Sony PlayStation 5 DualSense - Glacier White","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Sony PlayStation 5 DualSense - Glacier White","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Detail produktu Ariston Clas One WiFi 24 kW (3302123)","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Ariston Clas One WiFi 24 kW (3302123)","depth":12,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Ariston Clas One WiFi 24 kW (3302123)","depth":13,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Ariston Clas One WiFi 24 kW (3302123)","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Цена 2530,00 лв.","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"1293,57 €","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2530,00 лв.","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"*","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Detail produktu Ariston Clas One WiFi 24 kW (3302123)","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Ariston Clas One WiFi 24 kW (3302123)","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Detail produktu AMD Ryzen 7 7800X3D 8-Core 4.2GHz AM5 Tray (100-000000910)","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"AMD Ryzen 7 7800X3D 8-Core 4.2GHz AM5 Tray (100-000000910)","depth":12,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"AMD Ryzen 7 7800X3D 8-Core 4.2GHz AM5 Tray (100-000000910)","depth":13,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"AMD Ryzen 7 7800X3D 8-Core 4.2GHz AM5 Tray (100-000000910)","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"99 %","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"99","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"%","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"26x","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"26","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"x","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Цена 584,79 лв.","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"от","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"299,00 €","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"от","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"584,79 лв.","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"*","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Detail produktu AMD Ryzen 7 7800X3D 8-Core 4.2GHz AM5 Tray (100-000000910)","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"AMD Ryzen 7 7800X3D 8-Core 4.2GHz AM5 Tray (100-000000910)","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Detail produktu Samsung Galaxy Watch8 44mm (SM-L330)","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Samsung Galaxy Watch8 44mm (SM-L330)","depth":12,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Samsung Galaxy Watch8 44mm (SM-L330)","depth":13,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Samsung Galaxy Watch8 44mm (SM-L330)","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"100 %","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"100","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"%","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"1x","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"1","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"x","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Цена 430,28 лв.","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"от","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"220,00 €","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"от","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"430,28 лв.","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"*","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Detail produktu Samsung Galaxy Watch8 44mm (SM-L330)","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Samsung Galaxy Watch8 44mm (SM-L330)","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Detail produktu DEWALT DCF887N-XJ","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"DEWALT DCF887N-XJ","depth":12,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"DEWALT DCF887N-XJ","depth":13,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"DEWALT DCF887N-XJ","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"100 %","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"100","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"%","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"13x","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"13","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"x","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Цена 273,99 лв.","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"140,09 €","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"273,99 лв.","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"*","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Detail produktu DEWALT DCF887N-XJ","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"DEWALT DCF887N-XJ","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Detail produktu Xiaomi X20+ White (BHR8124EU)","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Xiaomi X20+ White (BHR8124EU)","depth":12,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Xiaomi X20+ White (BHR8124EU)","depth":13,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Xiaomi X20+ White (BHR8124EU)","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"96 %","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"96","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"%","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"25x","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"25","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"x","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Цена 700,19 лв.","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"от","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"358,00 €","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"от","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"700,19 лв.","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"*","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Detail produktu Xiaomi X20+ White (BHR8124EU)","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Xiaomi X20+ White (BHR8124EU)","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Detail produktu Apple iPad 2025 128GB MD3Y4","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Apple iPad 2025 128GB MD3Y4","depth":12,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Apple iPad 2025 128GB MD3Y4","depth":13,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Apple iPad 2025 128GB MD3Y4","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"100 %","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"100","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"%","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"4x","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"4","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"x","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Цена 721,70 лв.","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"от","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"369,00 €","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"от","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"721,70 лв.","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"*","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Detail produktu Apple iPad 2025 128GB MD3Y4","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Apple iPad 2025 128GB MD3Y4","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Detail produktu Kingston NV3 1TB (SNV3S/1000G)","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Kingston NV3 1TB (SNV3S/1000G)","depth":12,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Kingston NV3 1TB (SNV3S/1000G)","depth":13,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Kingston NV3 1TB (SNV3S/1000G)","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"100 %","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"100","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"%","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"24x","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"24","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"x","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Цена 111,29 лв.","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"от","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"56,90 €","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"от","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"111,29 лв.","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"*","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Detail produktu Kingston NV3 1TB (SNV3S/1000G)","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Kingston NV3 1TB (SNV3S/1000G)","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Detail produktu Logitech G29 Driving Force Racing Wheel (941-000112)","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false}]...
|
7179876823721267918
|
-8589184612382101
|
click
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Pazaruvaj.com — Знак, че е време за най-добрите оферти
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Отвори
Pazaruvaj.com - Надежден помощник за покупки, сравнение на цени и продуктови оферти
Какво търсите?
Изтрий
Търсене
Търсене
Затвори
Продукти
Намаления
Намаления
Електроника
Електроника
Информатика
Информатика
Здраве и красота
Здраве и красота
Битова техника
Битова техника
Дом и градина
Дом и градина
Автомобили, мотоциклети
Автомобили, мотоциклети
Строителство и ремонт
Строителство и ремонт
За офиса
За офиса
Спорт и фитнес
Спорт и фитнес
Още (11)
Още (11)
Най-предпочитани в Pazaruvaj
Най-предпочитани в Pazaruvaj
Detail produktu Apple iPhone 17 Pro Max 256GB
Apple iPhone 17 Pro Max 256GB
Apple iPhone 17 Pro Max 256GB
Apple iPhone 17 Pro Max 256GB
98 %
98
%
(
7x
7
x
)
Цена 2650,09 лв.
от
1354,97 €
от
2650,09 лв.
*
Detail produktu Apple iPhone 17 Pro Max 256GB
Apple iPhone 17 Pro Max 256GB
Detail produktu Sony PlayStation 5 (PS5) Slim Digital Edition
Sony PlayStation 5 (PS5) Slim Digital Edition
Sony PlayStation 5 (PS5) Slim Digital Edition
Sony PlayStation 5 (PS5) Slim Digital Edition
97 %
97
%
(
6x
6
x
)
Цена 868,39 лв.
от
444,00 €
от
868,39 лв.
*
Detail produktu Sony PlayStation 5 (PS5) Slim Digital Edition
Sony PlayStation 5 (PS5) Slim Digital Edition
Detail produktu Apple AirPods Pro 3 (MFHP4ZM)
Apple AirPods Pro 3 (MFHP4ZM)
Apple AirPods Pro 3 (MFHP4ZM)
Apple AirPods Pro 3 (MFHP4ZM)
92 %
92
%
(
5x
5
x
)
Цена 424,20 лв.
от
216,89 €
от
424,20 лв.
*
Detail produktu Apple AirPods Pro 3 (MFHP4ZM)
Apple AirPods Pro 3 (MFHP4ZM)
Detail produktu Dyson Airstrait 598960-01
Dyson Airstrait 598960-01
Dyson Airstrait 598960-01
Dyson Airstrait 598960-01
80 %
80
%
(
1x
1
x
)
Цена 956,40 лв.
от
489,00 €
от
956,40 лв.
*
Detail produktu Dyson Airstrait 598960-01
Dyson Airstrait 598960-01
Detail produktu Sony PlayStation 5 DualSense - Glacier White
Sony PlayStation 5 DualSense - Glacier White
Sony PlayStation 5 DualSense - Glacier White
Sony PlayStation 5 DualSense - Glacier White
99 %
99
%
(
74x
74
x
)
Цена 126,35 лв.
от
64,60 €
от
126,35 лв.
*
Detail produktu Sony PlayStation 5 DualSense - Glacier White
Sony PlayStation 5 DualSense - Glacier White
Detail produktu Ariston Clas One WiFi 24 kW (3302123)
Ariston Clas One WiFi 24 kW (3302123)
Ariston Clas One WiFi 24 kW (3302123)
Ariston Clas One WiFi 24 kW (3302123)
Цена 2530,00 лв.
1293,57 €
2530,00 лв.
*
Detail produktu Ariston Clas One WiFi 24 kW (3302123)
Ariston Clas One WiFi 24 kW (3302123)
Detail produktu AMD Ryzen 7 7800X3D 8-Core 4.2GHz AM5 Tray (100-000000910)
AMD Ryzen 7 7800X3D 8-Core 4.2GHz AM5 Tray (100-000000910)
AMD Ryzen 7 7800X3D 8-Core 4.2GHz AM5 Tray (100-000000910)
AMD Ryzen 7 7800X3D 8-Core 4.2GHz AM5 Tray (100-000000910)
99 %
99
%
(
26x
26
x
)
Цена 584,79 лв.
от
299,00 €
от
584,79 лв.
*
Detail produktu AMD Ryzen 7 7800X3D 8-Core 4.2GHz AM5 Tray (100-000000910)
AMD Ryzen 7 7800X3D 8-Core 4.2GHz AM5 Tray (100-000000910)
Detail produktu Samsung Galaxy Watch8 44mm (SM-L330)
Samsung Galaxy Watch8 44mm (SM-L330)
Samsung Galaxy Watch8 44mm (SM-L330)
Samsung Galaxy Watch8 44mm (SM-L330)
100 %
100
%
(
1x
1
x
)
Цена 430,28 лв.
от
220,00 €
от
430,28 лв.
*
Detail produktu Samsung Galaxy Watch8 44mm (SM-L330)
Samsung Galaxy Watch8 44mm (SM-L330)
Detail produktu DEWALT DCF887N-XJ
DEWALT DCF887N-XJ
DEWALT DCF887N-XJ
DEWALT DCF887N-XJ
100 %
100
%
(
13x
13
x
)
Цена 273,99 лв.
140,09 €
273,99 лв.
*
Detail produktu DEWALT DCF887N-XJ
DEWALT DCF887N-XJ
Detail produktu Xiaomi X20+ White (BHR8124EU)
Xiaomi X20+ White (BHR8124EU)
Xiaomi X20+ White (BHR8124EU)
Xiaomi X20+ White (BHR8124EU)
96 %
96
%
(
25x
25
x
)
Цена 700,19 лв.
от
358,00 €
от
700,19 лв.
*
Detail produktu Xiaomi X20+ White (BHR8124EU)
Xiaomi X20+ White (BHR8124EU)
Detail produktu Apple iPad 2025 128GB MD3Y4
Apple iPad 2025 128GB MD3Y4
Apple iPad 2025 128GB MD3Y4
Apple iPad 2025 128GB MD3Y4
100 %
100
%
(
4x
4
x
)
Цена 721,70 лв.
от
369,00 €
от
721,70 лв.
*
Detail produktu Apple iPad 2025 128GB MD3Y4
Apple iPad 2025 128GB MD3Y4
Detail produktu Kingston NV3 1TB (SNV3S/1000G)
Kingston NV3 1TB (SNV3S/1000G)
Kingston NV3 1TB (SNV3S/1000G)
Kingston NV3 1TB (SNV3S/1000G)
100 %
100
%
(
24x
24
x
)
Цена 111,29 лв.
от
56,90 €
от
111,29 лв.
*
Detail produktu Kingston NV3 1TB (SNV3S/1000G)
Kingston NV3 1TB (SNV3S/1000G)
Detail produktu Logitech G29 Driving Force Racing Wheel (941-000112)...
|
7570
|
|
7578
|
141
|
22
|
2026-04-13T16:06:56.626234+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096416626_m1.jpg...
|
Firefox
|
Компютри и Електроника | Аксесоари, Монитори, Комп Компютри и Електроника | Аксесоари, Монитори, Компоненти — Personal...
|
True
|
xtreme.bg/shop/index.php
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Компютри и Електроника | Аксесоари, Монитори, Компоненти
Компютри и Електроника | Аксесоари, Монитори, Компоненти
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
0€ / 0 лв.
0€ / 0 лв.
Търси в Продуктите ...
Compares
1
Сравни
Wishlists
0
Любими
Вашият интернет магазин за компютърна техника и електроника
Вашият интернет магазин за компютърна техника и електроника
Спорт Туризъм и Забавление keyboard_double_arrow_right
Спорт Туризъм и Забавление
keyboard_double_arrow_right
Компютри и Периферия keyboard_double_arrow_right
Компютри и Периферия
keyboard_double_arrow_right
Печат и Предпечат keyboard_double_arrow_right
Печат и Предпечат
keyboard_double_arrow_right
Гейминг keyboard_double_arrow_right
Гейминг
keyboard_double_arrow_right
Мобилни устройства keyboard_double_arrow_right
Мобилни устройства
keyboard_double_arrow_right
TV / Аудио и Видео keyboard_double_arrow_right
TV / Аудио и Видео
keyboard_double_arrow_right
Домакинска Техника keyboard_double_arrow_right
Домакинска Техника
keyboard_double_arrow_right
Здраве и Красота keyboard_double_arrow_right
Здраве и Красота
keyboard_double_arrow_right
Подаръци keyboard_double_arrow_right
Подаръци
keyboard_double_arrow_right
Моторни Превозни Средства keyboard_double_arrow_right
Моторни Превозни Средства
keyboard_double_arrow_right
Спорт Туризъм и Забавление
Спорт Туризъм и Забавление
Спорт Туризъм и Забавление
(
2598
продукта)
Компютри и Периферия
Компютри и Периферия
Компютри и Периферия
(
12455
продукта)
Печат и Предпечат
Печат и Предпечат
Печат и Предпечат
(
6499
продукта)
Гейминг
Гейминг
Гейминг
(
1604
продукта)
Мобилни устройства
Мобилни устройства
Мобилни устройства
(
2502
продукта)
1 of 2
•
1
2 of 2
•
2
Casio Logo
Logitech logo
Samsung logo
Garmin logo
Специални Предложения
Специални Предложения
Покажи Статистика
5
Оценете Продукта
EPSON
Промоция
Мултимедиен проектор, Epson EF-11, Portable Laser, Full HD (1920 x 1080), 16:9 , 1000 ANSI lumens, 2500000:1, 1xHDMI, Bluetooth, Miracast, 1x2 W, 30-150
Проектори
Мултимедиен проектор, Epson EF-11, Portable Laser, Full HD (1920 x 1080), 16:9 , 1000 ANSI lumens, 2500000:1, 1xHDMI, Bluetooth, Miracast, 1x2 W, 30-150", 1.2 kg, Black
Мултимедиен проектор, Epson EF-11, Portable Laser, Full HD (1920 x 1080), 16:9 , 1000 ANSI lumens, 2500000:1, 1xHDMI, Bluetooth, Miracast, 1x2 W, 30-150", 1.2 kg, Black
Мултимедиен проектор, Epson EF-11, Portable Laser, Full HD (1920 x 1080), 16:9 , 1000 ANSI lumens, 2500000:1, 1xHDMI, Bluetooth, Miracast, 1x2 W, 30-150", 1.2 kg, Black
€699
99
/
1369
06
лв
Оценете Продукта
Casio
Промоция
Мъжки часовник Casio G-Shock Bluetooth - GBM-2100A-1A3ER
Мъжки
Мъжки часовник Casio G-Shock Bluetooth - GBM-2100A-1A3ER
Мъжки часовник Casio G-Shock Bluetooth - GBM-2100A-1A3ER
Мъжки часовник Casio G-Shock Bluetooth - GBM-2100A-1A3ER
€204
51
/
399
99
лв
Logitrch Bussines
Хром
НОВИ ПРОДУКТИ
НОВИ ПРОДУКТИ
БОНУСИ
БОНУСИ
ПРОМОЦИИ
ПРОМОЦИИ
НАЙ-ПРОДАВАНИ
НАЙ-ПРОДАВАНИ
НАЙ-ГЛЕДАНИ
НАЙ-ГЛЕДАНИ
НАЙ-ВИСОКО ОЦЕНЕНИ
НАЙ-ВИСОКО ОЦЕНЕНИ
LEDVANCE
Ново
РЕЛСОВО LED ОСВЕТИТЕЛНО ТЯЛО 1PHASE TRACKING SPOT PULSE GU10 BLACK LEDVANCE
РЕЛСОВО LED ОСВЕТИТЕЛНО ТЯЛО 1PHASE TRACKING SPOT PULSE GU10 BLACK LEDVANCE
РЕЛСОВО LED ОСВЕТИТЕЛНО ТЯЛО 1PHASE TRACKING SPOT PULSE GU10 BLACK LEDVANCE
РЕЛСОВО LED ОСВЕТИТЕЛНО ТЯЛО 1PHASE TRACKING SPOT PULSE GU10 BLACK LEDVANCE
€6
45
/
12
62
лв
Оценете Продукта
LEDVANCE
Ново
LED ОСВЕТИТЕЛНО ТЯЛО SPOT ELEMENTAL BLACK 3XGU10 BLACK LEDVANCE
LED ОСВЕТИТЕЛНО ТЯЛО SPOT ELEMENTAL BLACK 3XGU10 BLACK LEDVANCE
LED ОСВЕТИТЕЛНО ТЯЛО SPOT ELEMENTAL BLACK 3XGU10 BLACK LEDVANCE
LED ОСВЕТИТЕЛНО ТЯЛО SPOT ELEMENTAL BLACK 3XGU10 BLACK LEDVANCE
€16
67
/
32
60
лв
Оценете Продукта
OSRAM
Ново
ДИГИТАЛЕН КОМПРЕСОР OTI2120 TYREINFLATE OSRAM
ДИГИТАЛЕН КОМПРЕСОР OTI2120 TYREINFLATE OSRAM
ДИГИТАЛЕН КОМПРЕСОР OTI2120 TYREINFLATE OSRAM
ДИГИТАЛЕН КОМПРЕСОР OTI2120 TYREINFLATE OSRAM
€50
23
/
98
24
лв
Оценете Продукта
BIC
Ново
ХИМИКАЛ ORANGE FINE СИН 20 BIC
ХИМИКАЛ ORANGE FINE СИН 20 BIC
ХИМИКАЛ ORANGE FINE СИН 20 BIC
ХИМИКАЛ ORANGE FINE СИН 20 BIC
€7
12
/
13
93
лв
Оценете Продукта
Thermalright
Ново
Thermalright охладител CPU Cooler Assassin X 120 Refined SE PLUS - LGA1851/AM5
Thermalright охладител CPU Cooler Assassin X 120 Refined SE PLUS - LGA1851/AM5
Thermalright охладител CPU Cooler Assassin X 120 Refined SE PLUS - LGA1851/AM5
Thermalright охладител CPU Cooler Assassin X 120 Refined SE PLUS - LGA1851/AM5
€19
46
/
38
06
лв
Оценете Продукта
Thermalright
Ново
Thermalright водно охлаждане Water Cooling Levita Vision 360 ARGB Black - 6.67 inch Curve AMOLED Display
Thermalright водно охлаждане Water Cooling Levita Vision 360 ARGB Black - 6.67 inch Curve AMOLED Display
Thermalright водно охлаждане Water Cooling Levita Vision 360 ARGB Black - 6.67 inch Curve AMOLED Display
Thermalright водно охлаждане Water Cooling Levita Vision 360 ARGB Black - 6.67 inch Curve AMOLED Display
€195
99
/
383
32
лв
Оценете Продукта
Thermalright
Ново
Thermalright водно охлаждане Water Cooling Levita Vision 360 UB ARGB Black - 6.67 inch Curve AMOLED Display
Thermalright водно охлаждане Water Cooling Levita Vision 360 UB ARGB Black - 6.67 inch Curve AMOLED Display
Thermalright водно охлаждане Water Cooling Levita Vision 360 UB ARGB Black - 6.67 inch Curve AMOLED Display
Thermalright водно охлаждане Water Cooling Levita Vision 360 UB ARGB Black - 6.67 inch Curve AMOLED Display
€207
99
/
406
79
лв
Оценете Продукта
Thermalright
Ново
Thermalright водно охлаждане Water Cooling Peerless Vision 360 ARGB Black - 3.95 inch IPS LCD Display
Thermalright водно охлаждане Water Cooling Peerless Vision 360 ARGB Black - 3.95 inch IPS LCD Display
Thermalright водно охлаждане Water Cooling Peerless Vision 360 ARGB Black - 3.95 inch IPS LCD Display
Thermalright водно охлаждане Water Cooling Peerless Vision 360 ARGB Black - 3.95 inch IPS LCD Display
€109
99
/
215
12
лв
Оценете Продукта...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Inbox - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Shameless • HBO Max","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Shameless • HBO Max","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Mute tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Machines - Tailscale","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Machines - Tailscale","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe Dashboard","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe Dashboard","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Компютри и Електроника | Аксесоари, Монитори, Компоненти","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Компютри и Електроника | Аксесоари, Монитори, Компоненти","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"google maps timeline export - Google Search","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"google maps timeline export - Google Search","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New Tab","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"0886 177 222","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0886 177 222","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"info@xtreme.bg","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"info@xtreme.bg","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"facebook","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"twitter","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"instagram","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"xtreme","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"НАЧАЛО","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"НАЧАЛО","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"МАГАЗИН","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"МАГАЗИН","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"БЛОГ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"БЛОГ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"КОНТАКТИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"КОНТАКТИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"РЕКЛАМАЦИИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"РЕКЛАМАЦИИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Lukáš Koválik","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":" 0€ / 0 лв.","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0€ / 0 лв.","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Търси в Продуктите ...","depth":11,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Compares","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":true,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Сравни","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Wishlists","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Любими","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Вашият интернет магазин за компютърна техника и електроника","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Вашият интернет магазин за компютърна техника и електроника","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Спорт Туризъм и Забавление keyboard_double_arrow_right","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Спорт Туризъм и Забавление","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"keyboard_double_arrow_right","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Компютри и Периферия keyboard_double_arrow_right","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Компютри и Периферия","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"keyboard_double_arrow_right","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Печат и Предпечат keyboard_double_arrow_right","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Печат и Предпечат","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"keyboard_double_arrow_right","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Гейминг keyboard_double_arrow_right","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Гейминг","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"keyboard_double_arrow_right","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Мобилни устройства keyboard_double_arrow_right","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Мобилни устройства","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"keyboard_double_arrow_right","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"TV / Аудио и Видео keyboard_double_arrow_right","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"TV / Аудио и Видео","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"keyboard_double_arrow_right","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Домакинска Техника keyboard_double_arrow_right","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Домакинска Техника","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"keyboard_double_arrow_right","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Здраве и Красота keyboard_double_arrow_right","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Здраве и Красота","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"keyboard_double_arrow_right","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Подаръци keyboard_double_arrow_right","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Подаръци","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"keyboard_double_arrow_right","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Моторни Превозни Средства keyboard_double_arrow_right","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Моторни Превозни Средства","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"keyboard_double_arrow_right","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Спорт Туризъм и Забавление","depth":13,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Спорт Туризъм и Забавление","depth":13,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Спорт Туризъм и Забавление","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2598","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"продукта)","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Компютри и Периферия","depth":13,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Компютри и Периферия","depth":13,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Компютри и Периферия","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"12455","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"продукта)","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Печат и Предпечат","depth":13,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Печат и Предпечат","depth":13,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Печат и Предпечат","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6499","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"продукта)","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Гейминг","depth":13,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Гейминг","depth":13,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Гейминг","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1604","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"продукта)","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Мобилни устройства","depth":13,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Мобилни устройства","depth":13,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Мобилни устройства","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2502","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"продукта)","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"1 of 2","depth":9,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"•","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"2 of 2","depth":9,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"•","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Casio Logo","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Logitech logo","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Samsung logo","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Garmin logo","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Специални Предложения","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Специални Предложения","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Покажи Статистика","depth":13,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"5","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":13,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"EPSON","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Промоция","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Мултимедиен проектор, Epson EF-11, Portable Laser, Full HD (1920 x 1080), 16:9 , 1000 ANSI lumens, 2500000:1, 1xHDMI, Bluetooth, Miracast, 1x2 W, 30-150","depth":13,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Проектори","depth":13,"bounds":{"left":0.0,"top":0.12,"width":0.04375,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Мултимедиен проектор, Epson EF-11, Portable Laser, Full HD (1920 x 1080), 16:9 , 1000 ANSI lumens, 2500000:1, 1xHDMI, Bluetooth, Miracast, 1x2 W, 30-150\", 1.2 kg, Black","depth":12,"bounds":{"left":0.0,"top":0.14,"width":0.34513888,"height":0.06555556},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Мултимедиен проектор, Epson EF-11, Portable Laser, Full HD (1920 x 1080), 16:9 , 1000 ANSI lumens, 2500000:1, 1xHDMI, Bluetooth, Miracast, 1x2 W, 30-150\", 1.2 kg, Black","depth":13,"bounds":{"left":0.0,"top":0.13777778,"width":0.32916668,"height":0.07},"help_text":"Мултимедиен проектор, Epson EF-11, Portable Laser, Full HD (1920 x 1080), 16:9 , 1000 ANSI lumens, 2500000:1, 1xHDMI, Bluetooth, Miracast, 1x2 W, 30-150","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Мултимедиен проектор, Epson EF-11, Portable Laser, Full HD (1920 x 1080), 16:9 , 1000 ANSI lumens, 2500000:1, 1xHDMI, Bluetooth, Miracast, 1x2 W, 30-150\", 1.2 kg, Black","depth":14,"bounds":{"left":0.0,"top":0.13777778,"width":0.32916668,"height":0.07},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€699","depth":13,"bounds":{"left":0.0,"top":0.23444444,"width":0.034027778,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"99","depth":14,"bounds":{"left":0.0,"top":0.23555556,"width":0.0125,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":13,"bounds":{"left":0.0,"top":0.24444444,"width":0.0034722222,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1369","depth":13,"bounds":{"left":0.0,"top":0.23444444,"width":0.0375,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"06","depth":14,"bounds":{"left":0.0,"top":0.23555556,"width":0.013194445,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":13,"bounds":{"left":0.011805556,"top":0.23444444,"width":0.02013889,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":13,"bounds":{"left":0.22222222,"top":0.28777778,"width":0.030555556,"height":0.037777778},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Casio","depth":15,"bounds":{"left":0.0,"top":0.30444443,"width":0.021527778,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Промоция","depth":15,"bounds":{"left":0.0,"top":0.34555554,"width":0.041666668,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Мъжки часовник Casio G-Shock Bluetooth - GBM-2100A-1A3ER","depth":13,"bounds":{"left":0.0,"top":0.28777778,"width":0.3125,"height":0.6111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Мъжки","depth":13,"bounds":{"left":0.0,"top":0.9,"width":0.028472222,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Мъжки часовник Casio G-Shock Bluetooth - GBM-2100A-1A3ER","depth":12,"bounds":{"left":0.0,"top":0.91888887,"width":0.34513888,"height":0.044444446},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Мъжки часовник Casio G-Shock Bluetooth - GBM-2100A-1A3ER","depth":13,"bounds":{"left":0.0,"top":0.9166667,"width":0.25069445,"height":0.04888889},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Мъжки часовник Casio G-Shock Bluetooth - GBM-2100A-1A3ER","depth":14,"bounds":{"left":0.0,"top":0.9166667,"width":0.25069445,"height":0.04888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€204","depth":13,"bounds":{"left":0.0,"top":0.99222225,"width":0.034027778,"height":0.0077777505},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"51","depth":14,"bounds":{"left":0.0,"top":0.99333334,"width":0.0125,"height":0.0066666603},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":13,"bounds":{"left":0.0,"top":1.0,"width":0.0034722222,"height":-0.0022221804},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"399","depth":13,"bounds":{"left":0.0,"top":0.99222225,"width":0.029166667,"height":0.0077777505},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"99","depth":14,"bounds":{"left":0.0,"top":0.99333334,"width":0.013194445,"height":0.0066666603},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":13,"bounds":{"left":0.0034722222,"top":0.99222225,"width":0.02013889,"height":0.0077777505},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Logitrch Bussines","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Хром","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"НОВИ ПРОДУКТИ","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"НОВИ ПРОДУКТИ","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"БОНУСИ","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"БОНУСИ","depth":11,"bounds":{"left":0.48125,"top":0.0,"width":0.047916666,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"ПРОМОЦИИ","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"ПРОМОЦИИ","depth":11,"bounds":{"left":0.5708333,"top":0.0,"width":0.07013889,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"НАЙ-ПРОДАВАНИ","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"НАЙ-ПРОДАВАНИ","depth":10,"bounds":{"left":0.6826389,"top":0.0,"width":0.10555556,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"НАЙ-ГЛЕДАНИ","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"НАЙ-ГЛЕДАНИ","depth":10,"bounds":{"left":0.8298611,"top":0.0,"width":0.08611111,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"НАЙ-ВИСОКО ОЦЕНЕНИ","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"НАЙ-ВИСОКО ОЦЕНЕНИ","depth":10,"bounds":{"left":0.95763886,"top":0.0,"width":0.04236114,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"LEDVANCE","depth":16,"bounds":{"left":0.31180555,"top":0.0,"width":0.04236111,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ново","depth":16,"bounds":{"left":0.31180555,"top":0.01,"width":0.020833334,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"РЕЛСОВО LED ОСВЕТИТЕЛНО ТЯЛО 1PHASE TRACKING SPOT PULSE GU10 BLACK LEDVANCE","depth":14,"bounds":{"left":0.30625,"top":0.0,"width":0.16805555,"height":0.2777778},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"РЕЛСОВО LED ОСВЕТИТЕЛНО ТЯЛО 1PHASE TRACKING SPOT PULSE GU10 BLACK LEDVANCE","depth":13,"bounds":{"left":0.30625,"top":0.24777777,"width":0.16805555,"height":0.064444445},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"РЕЛСОВО LED ОСВЕТИТЕЛНО ТЯЛО 1PHASE TRACKING SPOT PULSE GU10 BLACK LEDVANCE","depth":14,"bounds":{"left":0.30625,"top":0.24777777,"width":0.16388889,"height":0.062222224},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"РЕЛСОВО LED ОСВЕТИТЕЛНО ТЯЛО 1PHASE TRACKING SPOT PULSE GU10 BLACK LEDVANCE","depth":15,"bounds":{"left":0.30625,"top":0.24777777,"width":0.16388889,"height":0.062222224},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€6","depth":14,"bounds":{"left":0.38402778,"top":0.3288889,"width":0.016666668,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"45","depth":15,"bounds":{"left":0.40069443,"top":0.33,"width":0.0125,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":14,"bounds":{"left":0.4173611,"top":0.33888888,"width":0.0034722222,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"12","depth":14,"bounds":{"left":0.42083332,"top":0.3288889,"width":0.020833334,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"62","depth":15,"bounds":{"left":0.44166666,"top":0.33,"width":0.0125,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":14,"bounds":{"left":0.45416668,"top":0.3288889,"width":0.02013889,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":13,"bounds":{"left":0.45069444,"top":0.0,"width":0.030555556,"height":0.037777778},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"LEDVANCE","depth":16,"bounds":{"left":0.31180555,"top":0.41111112,"width":0.04236111,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ново","depth":16,"bounds":{"left":0.31180555,"top":0.4511111,"width":0.020833334,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"LED ОСВЕТИТЕЛНО ТЯЛО SPOT ELEMENTAL BLACK 3XGU10 BLACK LEDVANCE","depth":14,"bounds":{"left":0.30625,"top":0.39333335,"width":0.16805555,"height":0.2777778},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"LED ОСВЕТИТЕЛНО ТЯЛО SPOT ELEMENTAL BLACK 3XGU10 BLACK LEDVANCE","depth":13,"bounds":{"left":0.30625,"top":0.6888889,"width":0.16805555,"height":0.064444445},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"LED ОСВЕТИТЕЛНО ТЯЛО SPOT ELEMENTAL BLACK 3XGU10 BLACK LEDVANCE","depth":14,"bounds":{"left":0.30625,"top":0.6888889,"width":0.15763889,"height":0.062222224},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"LED ОСВЕТИТЕЛНО ТЯЛО SPOT ELEMENTAL BLACK 3XGU10 BLACK LEDVANCE","depth":15,"bounds":{"left":0.30625,"top":0.6888889,"width":0.15763889,"height":0.062222224},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€16","depth":14,"bounds":{"left":0.37569445,"top":0.77,"width":0.025,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"67","depth":15,"bounds":{"left":0.40069443,"top":0.77111113,"width":0.0125,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":14,"bounds":{"left":0.4173611,"top":0.78,"width":0.0034722222,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"32","depth":14,"bounds":{"left":0.42083332,"top":0.77,"width":0.020833334,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"60","depth":15,"bounds":{"left":0.44166666,"top":0.77111113,"width":0.0125,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":14,"bounds":{"left":0.45416668,"top":0.77,"width":0.02013889,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":13,"bounds":{"left":0.45069444,"top":0.39333335,"width":0.030555556,"height":0.037777778},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"OSRAM","depth":16,"bounds":{"left":0.31180555,"top":0.8522222,"width":0.029166667,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ново","depth":16,"bounds":{"left":0.31180555,"top":0.8922222,"width":0.020833334,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"ДИГИТАЛЕН КОМПРЕСОР OTI2120 TYREINFLATE OSRAM","depth":14,"bounds":{"left":0.30625,"top":0.83444446,"width":0.16805555,"height":0.16555554},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"ДИГИТАЛЕН КОМПРЕСОР OTI2120 TYREINFLATE OSRAM","depth":13,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"ДИГИТАЛЕН КОМПРЕСОР OTI2120 TYREINFLATE OSRAM","depth":14,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"ДИГИТАЛЕН КОМПРЕСОР OTI2120 TYREINFLATE OSRAM","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€50","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"23","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"98","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"24","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":13,"bounds":{"left":0.45069444,"top":0.83444446,"width":0.030555556,"height":0.037777778},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"BIC","depth":16,"bounds":{"left":0.5090278,"top":0.0,"width":0.013194445,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ново","depth":16,"bounds":{"left":0.5090278,"top":0.01,"width":0.020833334,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"ХИМИКАЛ ORANGE FINE СИН 20 BIC","depth":14,"bounds":{"left":0.5034722,"top":0.0,"width":0.16805555,"height":0.2777778},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"ХИМИКАЛ ORANGE FINE СИН 20 BIC","depth":13,"bounds":{"left":0.5034722,"top":0.24777777,"width":0.16805555,"height":0.064444445},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"ХИМИКАЛ ORANGE FINE СИН 20 BIC","depth":14,"bounds":{"left":0.5034722,"top":0.24777777,"width":0.16527778,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"ХИМИКАЛ ORANGE FINE СИН 20 BIC","depth":15,"bounds":{"left":0.5034722,"top":0.24777777,"width":0.16527778,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€7","depth":14,"bounds":{"left":0.58125,"top":0.3288889,"width":0.016666668,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"12","depth":15,"bounds":{"left":0.59791666,"top":0.33,"width":0.0125,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":14,"bounds":{"left":0.6145833,"top":0.33888888,"width":0.0034722222,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"13","depth":14,"bounds":{"left":0.6180556,"top":0.3288889,"width":0.020833334,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"93","depth":15,"bounds":{"left":0.6388889,"top":0.33,"width":0.0125,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":14,"bounds":{"left":0.6513889,"top":0.3288889,"width":0.02013889,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":13,"bounds":{"left":0.6479167,"top":0.0,"width":0.030555556,"height":0.037777778},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Thermalright","depth":16,"bounds":{"left":0.5090278,"top":0.41111112,"width":0.049305554,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ново","depth":16,"bounds":{"left":0.5090278,"top":0.4511111,"width":0.020833334,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Thermalright охладител CPU Cooler Assassin X 120 Refined SE PLUS - LGA1851/AM5","depth":14,"bounds":{"left":0.5034722,"top":0.39333335,"width":0.16805555,"height":0.2777778},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Thermalright охладител CPU Cooler Assassin X 120 Refined SE PLUS - LGA1851/AM5","depth":13,"bounds":{"left":0.5034722,"top":0.6888889,"width":0.16805555,"height":0.064444445},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Thermalright охладител CPU Cooler Assassin X 120 Refined SE PLUS - LGA1851/AM5","depth":14,"bounds":{"left":0.5034722,"top":0.6888889,"width":0.15902779,"height":0.062222224},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Thermalright охладител CPU Cooler Assassin X 120 Refined SE PLUS - LGA1851/AM5","depth":15,"bounds":{"left":0.5034722,"top":0.6888889,"width":0.15902779,"height":0.062222224},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€19","depth":14,"bounds":{"left":0.5729167,"top":0.77,"width":0.025,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"46","depth":15,"bounds":{"left":0.59791666,"top":0.77111113,"width":0.0125,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":14,"bounds":{"left":0.6145833,"top":0.78,"width":0.0034722222,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"38","depth":14,"bounds":{"left":0.6180556,"top":0.77,"width":0.020833334,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"06","depth":15,"bounds":{"left":0.6388889,"top":0.77111113,"width":0.0125,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":14,"bounds":{"left":0.6513889,"top":0.77,"width":0.02013889,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":13,"bounds":{"left":0.6479167,"top":0.39333335,"width":0.030555556,"height":0.037777778},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Thermalright","depth":16,"bounds":{"left":0.5090278,"top":0.8522222,"width":0.049305554,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ново","depth":16,"bounds":{"left":0.5090278,"top":0.8922222,"width":0.020833334,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Thermalright водно охлаждане Water Cooling Levita Vision 360 ARGB Black - 6.67 inch Curve AMOLED Display","depth":14,"bounds":{"left":0.5034722,"top":0.83444446,"width":0.16805555,"height":0.16555554},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Thermalright водно охлаждане Water Cooling Levita Vision 360 ARGB Black - 6.67 inch Curve AMOLED Display","depth":13,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Thermalright водно охлаждане Water Cooling Levita Vision 360 ARGB Black - 6.67 inch Curve AMOLED Display","depth":14,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Thermalright водно охлаждане Water Cooling Levita Vision 360 ARGB Black - 6.67 inch Curve AMOLED Display","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€195","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"99","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"383","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"32","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":13,"bounds":{"left":0.6479167,"top":0.83444446,"width":0.030555556,"height":0.037777778},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Thermalright","depth":16,"bounds":{"left":0.70625,"top":0.0,"width":0.049305554,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ново","depth":16,"bounds":{"left":0.70625,"top":0.01,"width":0.020833334,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Thermalright водно охлаждане Water Cooling Levita Vision 360 UB ARGB Black - 6.67 inch Curve AMOLED Display","depth":14,"bounds":{"left":0.70069444,"top":0.0,"width":0.16805555,"height":0.2777778},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Thermalright водно охлаждане Water Cooling Levita Vision 360 UB ARGB Black - 6.67 inch Curve AMOLED Display","depth":13,"bounds":{"left":0.70069444,"top":0.24777777,"width":0.16805555,"height":0.064444445},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Thermalright водно охлаждане Water Cooling Levita Vision 360 UB ARGB Black - 6.67 inch Curve AMOLED Display","depth":14,"bounds":{"left":0.70069444,"top":0.24777777,"width":0.16805555,"height":0.083333336},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Thermalright водно охлаждане Water Cooling Levita Vision 360 UB ARGB Black - 6.67 inch Curve AMOLED Display","depth":15,"bounds":{"left":0.70069444,"top":0.24777777,"width":0.16805555,"height":0.083333336},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€207","depth":14,"bounds":{"left":0.75277776,"top":0.3288889,"width":0.034027778,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"99","depth":15,"bounds":{"left":0.78680557,"top":0.33,"width":0.0125,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":14,"bounds":{"left":0.8034722,"top":0.33888888,"width":0.0034722222,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"406","depth":14,"bounds":{"left":0.80694443,"top":0.3288889,"width":0.029166667,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"79","depth":15,"bounds":{"left":0.8361111,"top":0.33,"width":0.0125,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":14,"bounds":{"left":0.8486111,"top":0.3288889,"width":0.02013889,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":13,"bounds":{"left":0.8451389,"top":0.0,"width":0.030555556,"height":0.037777778},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Thermalright","depth":16,"bounds":{"left":0.70625,"top":0.41111112,"width":0.049305554,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ново","depth":16,"bounds":{"left":0.70625,"top":0.4511111,"width":0.020833334,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Thermalright водно охлаждане Water Cooling Peerless Vision 360 ARGB Black - 3.95 inch IPS LCD Display","depth":14,"bounds":{"left":0.70069444,"top":0.39333335,"width":0.16805555,"height":0.2777778},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Thermalright водно охлаждане Water Cooling Peerless Vision 360 ARGB Black - 3.95 inch IPS LCD Display","depth":13,"bounds":{"left":0.70069444,"top":0.6888889,"width":0.16805555,"height":0.064444445},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Thermalright водно охлаждане Water Cooling Peerless Vision 360 ARGB Black - 3.95 inch IPS LCD Display","depth":14,"bounds":{"left":0.70069444,"top":0.6888889,"width":0.16805555,"height":0.062222224},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Thermalright водно охлаждане Water Cooling Peerless Vision 360 ARGB Black - 3.95 inch IPS LCD Display","depth":15,"bounds":{"left":0.70069444,"top":0.6888889,"width":0.16805555,"height":0.062222224},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€109","depth":14,"bounds":{"left":0.75277776,"top":0.77,"width":0.034027778,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"99","depth":15,"bounds":{"left":0.78680557,"top":0.77111113,"width":0.0125,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":14,"bounds":{"left":0.8034722,"top":0.78,"width":0.0034722222,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"215","depth":14,"bounds":{"left":0.80694443,"top":0.77,"width":0.029166667,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"12","depth":15,"bounds":{"left":0.8361111,"top":0.77111113,"width":0.0125,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":14,"bounds":{"left":0.8486111,"top":0.77,"width":0.02013889,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":13,"bounds":{"left":0.8451389,"top":0.39333335,"width":0.030555556,"height":0.037777778},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false}]...
|
9075214386509018869
|
-6168692315527736200
|
click
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Компютри и Електроника | Аксесоари, Монитори, Компоненти
Компютри и Електроника | Аксесоари, Монитори, Компоненти
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
0€ / 0 лв.
0€ / 0 лв.
Търси в Продуктите ...
Compares
1
Сравни
Wishlists
0
Любими
Вашият интернет магазин за компютърна техника и електроника
Вашият интернет магазин за компютърна техника и електроника
Спорт Туризъм и Забавление keyboard_double_arrow_right
Спорт Туризъм и Забавление
keyboard_double_arrow_right
Компютри и Периферия keyboard_double_arrow_right
Компютри и Периферия
keyboard_double_arrow_right
Печат и Предпечат keyboard_double_arrow_right
Печат и Предпечат
keyboard_double_arrow_right
Гейминг keyboard_double_arrow_right
Гейминг
keyboard_double_arrow_right
Мобилни устройства keyboard_double_arrow_right
Мобилни устройства
keyboard_double_arrow_right
TV / Аудио и Видео keyboard_double_arrow_right
TV / Аудио и Видео
keyboard_double_arrow_right
Домакинска Техника keyboard_double_arrow_right
Домакинска Техника
keyboard_double_arrow_right
Здраве и Красота keyboard_double_arrow_right
Здраве и Красота
keyboard_double_arrow_right
Подаръци keyboard_double_arrow_right
Подаръци
keyboard_double_arrow_right
Моторни Превозни Средства keyboard_double_arrow_right
Моторни Превозни Средства
keyboard_double_arrow_right
Спорт Туризъм и Забавление
Спорт Туризъм и Забавление
Спорт Туризъм и Забавление
(
2598
продукта)
Компютри и Периферия
Компютри и Периферия
Компютри и Периферия
(
12455
продукта)
Печат и Предпечат
Печат и Предпечат
Печат и Предпечат
(
6499
продукта)
Гейминг
Гейминг
Гейминг
(
1604
продукта)
Мобилни устройства
Мобилни устройства
Мобилни устройства
(
2502
продукта)
1 of 2
•
1
2 of 2
•
2
Casio Logo
Logitech logo
Samsung logo
Garmin logo
Специални Предложения
Специални Предложения
Покажи Статистика
5
Оценете Продукта
EPSON
Промоция
Мултимедиен проектор, Epson EF-11, Portable Laser, Full HD (1920 x 1080), 16:9 , 1000 ANSI lumens, 2500000:1, 1xHDMI, Bluetooth, Miracast, 1x2 W, 30-150
Проектори
Мултимедиен проектор, Epson EF-11, Portable Laser, Full HD (1920 x 1080), 16:9 , 1000 ANSI lumens, 2500000:1, 1xHDMI, Bluetooth, Miracast, 1x2 W, 30-150", 1.2 kg, Black
Мултимедиен проектор, Epson EF-11, Portable Laser, Full HD (1920 x 1080), 16:9 , 1000 ANSI lumens, 2500000:1, 1xHDMI, Bluetooth, Miracast, 1x2 W, 30-150", 1.2 kg, Black
Мултимедиен проектор, Epson EF-11, Portable Laser, Full HD (1920 x 1080), 16:9 , 1000 ANSI lumens, 2500000:1, 1xHDMI, Bluetooth, Miracast, 1x2 W, 30-150", 1.2 kg, Black
€699
99
/
1369
06
лв
Оценете Продукта
Casio
Промоция
Мъжки часовник Casio G-Shock Bluetooth - GBM-2100A-1A3ER
Мъжки
Мъжки часовник Casio G-Shock Bluetooth - GBM-2100A-1A3ER
Мъжки часовник Casio G-Shock Bluetooth - GBM-2100A-1A3ER
Мъжки часовник Casio G-Shock Bluetooth - GBM-2100A-1A3ER
€204
51
/
399
99
лв
Logitrch Bussines
Хром
НОВИ ПРОДУКТИ
НОВИ ПРОДУКТИ
БОНУСИ
БОНУСИ
ПРОМОЦИИ
ПРОМОЦИИ
НАЙ-ПРОДАВАНИ
НАЙ-ПРОДАВАНИ
НАЙ-ГЛЕДАНИ
НАЙ-ГЛЕДАНИ
НАЙ-ВИСОКО ОЦЕНЕНИ
НАЙ-ВИСОКО ОЦЕНЕНИ
LEDVANCE
Ново
РЕЛСОВО LED ОСВЕТИТЕЛНО ТЯЛО 1PHASE TRACKING SPOT PULSE GU10 BLACK LEDVANCE
РЕЛСОВО LED ОСВЕТИТЕЛНО ТЯЛО 1PHASE TRACKING SPOT PULSE GU10 BLACK LEDVANCE
РЕЛСОВО LED ОСВЕТИТЕЛНО ТЯЛО 1PHASE TRACKING SPOT PULSE GU10 BLACK LEDVANCE
РЕЛСОВО LED ОСВЕТИТЕЛНО ТЯЛО 1PHASE TRACKING SPOT PULSE GU10 BLACK LEDVANCE
€6
45
/
12
62
лв
Оценете Продукта
LEDVANCE
Ново
LED ОСВЕТИТЕЛНО ТЯЛО SPOT ELEMENTAL BLACK 3XGU10 BLACK LEDVANCE
LED ОСВЕТИТЕЛНО ТЯЛО SPOT ELEMENTAL BLACK 3XGU10 BLACK LEDVANCE
LED ОСВЕТИТЕЛНО ТЯЛО SPOT ELEMENTAL BLACK 3XGU10 BLACK LEDVANCE
LED ОСВЕТИТЕЛНО ТЯЛО SPOT ELEMENTAL BLACK 3XGU10 BLACK LEDVANCE
€16
67
/
32
60
лв
Оценете Продукта
OSRAM
Ново
ДИГИТАЛЕН КОМПРЕСОР OTI2120 TYREINFLATE OSRAM
ДИГИТАЛЕН КОМПРЕСОР OTI2120 TYREINFLATE OSRAM
ДИГИТАЛЕН КОМПРЕСОР OTI2120 TYREINFLATE OSRAM
ДИГИТАЛЕН КОМПРЕСОР OTI2120 TYREINFLATE OSRAM
€50
23
/
98
24
лв
Оценете Продукта
BIC
Ново
ХИМИКАЛ ORANGE FINE СИН 20 BIC
ХИМИКАЛ ORANGE FINE СИН 20 BIC
ХИМИКАЛ ORANGE FINE СИН 20 BIC
ХИМИКАЛ ORANGE FINE СИН 20 BIC
€7
12
/
13
93
лв
Оценете Продукта
Thermalright
Ново
Thermalright охладител CPU Cooler Assassin X 120 Refined SE PLUS - LGA1851/AM5
Thermalright охладител CPU Cooler Assassin X 120 Refined SE PLUS - LGA1851/AM5
Thermalright охладител CPU Cooler Assassin X 120 Refined SE PLUS - LGA1851/AM5
Thermalright охладител CPU Cooler Assassin X 120 Refined SE PLUS - LGA1851/AM5
€19
46
/
38
06
лв
Оценете Продукта
Thermalright
Ново
Thermalright водно охлаждане Water Cooling Levita Vision 360 ARGB Black - 6.67 inch Curve AMOLED Display
Thermalright водно охлаждане Water Cooling Levita Vision 360 ARGB Black - 6.67 inch Curve AMOLED Display
Thermalright водно охлаждане Water Cooling Levita Vision 360 ARGB Black - 6.67 inch Curve AMOLED Display
Thermalright водно охлаждане Water Cooling Levita Vision 360 ARGB Black - 6.67 inch Curve AMOLED Display
€195
99
/
383
32
лв
Оценете Продукта
Thermalright
Ново
Thermalright водно охлаждане Water Cooling Levita Vision 360 UB ARGB Black - 6.67 inch Curve AMOLED Display
Thermalright водно охлаждане Water Cooling Levita Vision 360 UB ARGB Black - 6.67 inch Curve AMOLED Display
Thermalright водно охлаждане Water Cooling Levita Vision 360 UB ARGB Black - 6.67 inch Curve AMOLED Display
Thermalright водно охлаждане Water Cooling Levita Vision 360 UB ARGB Black - 6.67 inch Curve AMOLED Display
€207
99
/
406
79
лв
Оценете Продукта
Thermalright
Ново
Thermalright водно охлаждане Water Cooling Peerless Vision 360 ARGB Black - 3.95 inch IPS LCD Display
Thermalright водно охлаждане Water Cooling Peerless Vision 360 ARGB Black - 3.95 inch IPS LCD Display
Thermalright водно охлаждане Water Cooling Peerless Vision 360 ARGB Black - 3.95 inch IPS LCD Display
Thermalright водно охлаждане Water Cooling Peerless Vision 360 ARGB Black - 3.95 inch IPS LCD Display
€109
99
/
215
12
лв
Оценете Продукта...
|
NULL
|
|
7580
|
141
|
24
|
2026-04-13T16:07:07.424793+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096427424_m1.jpg...
|
Firefox
|
Сравни — Personal
|
True
|
xtreme.bg/shop/compare.php?command=del&id=5983 xtreme.bg/shop/compare.php?command=del&id=59833...
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Сравни
Сравни
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
Добре дошли
Профил
Профил
Поръчки
Поръчки
Адреси
Адреси
Изход
Изход
0€ / 0 лв.
0€ / 0 лв.
Всички Категории
Всички Категории
Търси в Продуктите ...
Compares
0
Сравни
Wishlists
0
Любими
Сравняване на Продукти
Сравняване на Продукти
Начало
Начало
»
Сравняване на Продукти
Сравняване на Продукти
Няма избрани продукти за сравняване
Запишете се за нашият Бюлетин
Запишете се за нашият Бюлетин
Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.
[EMAIL]
Запиши се
Facebook
Twitter
Instagram
xtreme
xtreme
Ако имате въпроси свържете се с нас!
Ако имате въпроси свържете се с нас!
[EMAIL]
[EMAIL]
+359 886 177 222
+359 886 177 222
Информация
Информация
Доставка
Доставка
Условия
Условия
Рекламация
Рекламация
Контакти
Контакти
За Нас
За Нас
Потребител
Потребител
Профил
Профил
История на Поръчките
История на Поръчките
Любими
Любими
GDPR
GDPR
Лични Данни
Лични Данни
Методи за Плащане
Методи за Плащане
Наложен Платеж
Кредитна/Дебитна Карта
Банков Превод
На изплащане ПБ Лични Финанси
Copyright © 2023
Xtreme.bg
Xtreme.bg
- Всички права запазени.
Онлайн магазин вървящ на
XCore
XCore
xtreme.bg/shop/orders.php...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Inbox - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Shameless • HBO Max","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Shameless • HBO Max","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Mute tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Machines - Tailscale","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Machines - Tailscale","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe Dashboard","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe Dashboard","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Сравни","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Сравни","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"google maps timeline export - Google Search","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"google maps timeline export - Google Search","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New Tab","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"0886 177 222","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0886 177 222","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"info@xtreme.bg","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"info@xtreme.bg","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"facebook","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"twitter","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"instagram","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"xtreme","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"НАЧАЛО","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"НАЧАЛО","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"МАГАЗИН","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"МАГАЗИН","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"БЛОГ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"БЛОГ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"КОНТАКТИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"КОНТАКТИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"РЕКЛАМАЦИИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"РЕКЛАМАЦИИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Lukáš Koválik","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Добре дошли","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Профил ","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Профил","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Поръчки ","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":true,"is_selected":false},{"role":"AXStaticText","text":"Поръчки","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Адреси ","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Адреси","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Изход","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Изход","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":" 0€ / 0 лв.","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0€ / 0 лв.","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Всички Категории","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Всички Категории","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Търси в Продуктите ...","depth":11,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Compares","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Сравни","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Wishlists","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Любими","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Сравняване на Продукти","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Сравняване на Продукти","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Начало","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Начало","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"»","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Сравняване на Продукти","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Сравняване на Продукти","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Няма избрани продукти за сравняване","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Запишете се за нашият Бюлетин","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Запишете се за нашият Бюлетин","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"kovaliklukas@gmail.com","depth":8,"value":"kovaliklukas@gmail.com","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Запиши се","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Facebook","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Twitter","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Instagram","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"xtreme","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"xtreme","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Ако имате въпроси свържете се с нас!","depth":10,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ако имате въпроси свържете се с нас!","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"info@xtreme.bg","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"info@xtreme.bg","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"+359 886 177 222","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"+359 886 177 222","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Информация","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Информация","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Доставка","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Доставка","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Условия","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Условия","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Рекламация","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Рекламация","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Контакти","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Контакти","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"За Нас","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"За Нас","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Потребител","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Потребител","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Профил","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Профил","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"История на Поръчките","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"История на Поръчките","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Любими","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Любими","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"GDPR","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"GDPR","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Лични Данни","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Лични Данни","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Методи за Плащане","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Методи за Плащане","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Наложен Платеж","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Кредитна/Дебитна Карта","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Банков Превод","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"На изплащане ПБ Лични Финанси","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Copyright © 2023","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Xtreme.bg","depth":8,"help_text":"Xtreme Online Store","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Xtreme.bg","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"- Всички права запазени.","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Онлайн магазин вървящ на","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"XCore","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"XCore","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"xtreme.bg/shop/orders.php","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
-3112883009258082014
|
-1017525051833144488
|
click
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Сравни
Сравни
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
Добре дошли
Профил
Профил
Поръчки
Поръчки
Адреси
Адреси
Изход
Изход
0€ / 0 лв.
0€ / 0 лв.
Всички Категории
Всички Категории
Търси в Продуктите ...
Compares
0
Сравни
Wishlists
0
Любими
Сравняване на Продукти
Сравняване на Продукти
Начало
Начало
»
Сравняване на Продукти
Сравняване на Продукти
Няма избрани продукти за сравняване
Запишете се за нашият Бюлетин
Запишете се за нашият Бюлетин
Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.
[EMAIL]
Запиши се
Facebook
Twitter
Instagram
xtreme
xtreme
Ако имате въпроси свържете се с нас!
Ако имате въпроси свържете се с нас!
[EMAIL]
[EMAIL]
+359 886 177 222
+359 886 177 222
Информация
Информация
Доставка
Доставка
Условия
Условия
Рекламация
Рекламация
Контакти
Контакти
За Нас
За Нас
Потребител
Потребител
Профил
Профил
История на Поръчките
История на Поръчките
Любими
Любими
GDPR
GDPR
Лични Данни
Лични Данни
Методи за Плащане
Методи за Плащане
Наложен Платеж
Кредитна/Дебитна Карта
Банков Превод
На изплащане ПБ Лични Финанси
Copyright © 2023
Xtreme.bg
Xtreme.bg
- Всички права запазени.
Онлайн магазин вървящ на
XCore
XCore
xtreme.bg/shop/orders.php...
|
NULL
|
|
7581
|
141
|
25
|
2026-04-13T16:07:11.856711+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096431856_m1.jpg...
|
Firefox
|
Поръчки — Personal
|
True
|
xtreme.bg/shop/orders.php
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Поръчки
Поръчки
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
0€ / 0 лв.
0€ / 0 лв.
Всички Категории
Всички Категории
Търси в Продуктите ...
Compares
0
Сравни
Wishlists
0
Любими
Вашите Поръчки
Вашите Поръчки
Начало
Начало
»
Вашите Поръчки
Вашите Поръчки
Страница
1
от
1
Поръчки
3
Поръчка Номер
Дата
Статус
Начин на Плащане
Тотал
Действия
110171
02-12-2025 13:16:56
Поръчката е приключена
Кредитна / Дебитна Карта - Плащане онлайн -
Платено
374.77
лв
102276
30-09-2025 22:47:39
Поръчката е приключена
Кредитна / Дебитна Карта - Плащане онлайн -
Платено
508.06
лв
11678
23-09-2022 18:20:56
Поръчката е приключена
Наложен Платеж при получаване в Брой или с Карта
2,357.00
лв
Поръчка Номер
110171
102276
11678
Дата
02-12-2025 13:16:56
30-09-2025 22:47:39
23-09-2022 18:20:56
Статус
Поръчката е приключена
Поръчката е приключена
Поръчката е приключена
Начин на Плащане
Кредитна / Дебитна Карта - Плащане онлайн -
Платено
Кредитна / Дебитна Карта - Плащане онлайн -
Платено
Наложен Платеж при получаване в Брой или с Карта
Тотал
374.77
лв
508.06
лв
2,357.00
лв
Действия
Запишете се за нашият Бюлетин
Запишете се за нашият Бюлетин
Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.
[EMAIL]
Запиши се
Facebook
Twitter
Instagram
xtreme
xtreme
Ако имате въпроси свържете се с нас!
Ако имате въпроси свържете се с нас!
[EMAIL]
[EMAIL]
+359 886 177 222
+359 886 177 222
Информация
Информация
Доставка
Доставка
Условия
Условия
Рекламация
Рекламация
Контакти
Контакти
За Нас
За Нас
Потребител
Потребител
Профил
Профил
История на Поръчките
История на Поръчките
Любими
Любими
GDPR
GDPR
Лични Данни
Лични Данни
Методи за Плащане
Методи за Плащане
Наложен Платеж
Кредитна/Дебитна Карта
Банков Превод
На изплащане ПБ Лични Финанси
Copyright © 2023
Xtreme.bg
Xtreme.bg
- Всички права запазени.
Онлайн магазин вървящ на
XCore
XCore...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Inbox - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Shameless • HBO Max","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Shameless • HBO Max","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Mute tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Machines - Tailscale","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Machines - Tailscale","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe Dashboard","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe Dashboard","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Поръчки","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Поръчки","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"google maps timeline export - Google Search","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"google maps timeline export - Google Search","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New Tab","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"0886 177 222","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0886 177 222","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"info@xtreme.bg","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"info@xtreme.bg","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"facebook","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"twitter","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"instagram","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"xtreme","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"НАЧАЛО","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"НАЧАЛО","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"МАГАЗИН","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"МАГАЗИН","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"БЛОГ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"БЛОГ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"КОНТАКТИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"КОНТАКТИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"РЕКЛАМАЦИИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"РЕКЛАМАЦИИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Lukáš Koválik","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":" 0€ / 0 лв.","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0€ / 0 лв.","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Всички Категории","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Всички Категории","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Търси в Продуктите ...","depth":11,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Compares","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Сравни","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Wishlists","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Любими","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Вашите Поръчки","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Вашите Поръчки","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Начало","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Начало","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"»","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Вашите Поръчки","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Вашите Поръчки","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Страница","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"от","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Поръчки","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Поръчка Номер","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Дата","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Статус","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Начин на Плащане","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Тотал","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Действия","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"110171","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"02-12-2025 13:16:56","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Поръчката е приключена","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Кредитна / Дебитна Карта - Плащане онлайн -","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Платено","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"374.77","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"102276","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"30-09-2025 22:47:39","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Поръчката е приключена","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Кредитна / Дебитна Карта - Плащане онлайн -","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Платено","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"508.06","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11678","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"23-09-2022 18:20:56","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Поръчката е приключена","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Наложен Платеж при получаване в Брой или с Карта","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2,357.00","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Поръчка Номер","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"110171","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"102276","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11678","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Дата","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"02-12-2025 13:16:56","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"30-09-2025 22:47:39","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"23-09-2022 18:20:56","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Статус","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Поръчката е приключена","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Поръчката е приключена","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Поръчката е приключена","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Начин на Плащане","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Кредитна / Дебитна Карта - Плащане онлайн -","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Платено","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Кредитна / Дебитна Карта - Плащане онлайн -","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Платено","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Наложен Платеж при получаване в Брой или с Карта","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Тотал","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"374.77","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"508.06","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2,357.00","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Действия","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Запишете се за нашият Бюлетин","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Запишете се за нашият Бюлетин","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"kovaliklukas@gmail.com","depth":8,"value":"kovaliklukas@gmail.com","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Запиши се","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Facebook","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Twitter","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Instagram","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"xtreme","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"xtreme","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Ако имате въпроси свържете се с нас!","depth":10,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ако имате въпроси свържете се с нас!","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"info@xtreme.bg","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"info@xtreme.bg","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"+359 886 177 222","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"+359 886 177 222","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Информация","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Информация","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Доставка","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Доставка","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Условия","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Условия","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Рекламация","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Рекламация","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Контакти","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Контакти","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"За Нас","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"За Нас","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Потребител","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Потребител","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Профил","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Профил","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"История на Поръчките","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"История на Поръчките","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Любими","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Любими","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"GDPR","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"GDPR","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Лични Данни","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Лични Данни","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Методи за Плащане","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Методи за Плащане","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Наложен Платеж","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Кредитна/Дебитна Карта","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Банков Превод","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"На изплащане ПБ Лични Финанси","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Copyright © 2023","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Xtreme.bg","depth":8,"help_text":"Xtreme Online Store","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Xtreme.bg","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"- Всички права запазени.","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Онлайн магазин вървящ на","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"XCore","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"XCore","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
-194626661629703806
|
7037268385398560792
|
click
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Поръчки
Поръчки
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
0€ / 0 лв.
0€ / 0 лв.
Всички Категории
Всички Категории
Търси в Продуктите ...
Compares
0
Сравни
Wishlists
0
Любими
Вашите Поръчки
Вашите Поръчки
Начало
Начало
»
Вашите Поръчки
Вашите Поръчки
Страница
1
от
1
Поръчки
3
Поръчка Номер
Дата
Статус
Начин на Плащане
Тотал
Действия
110171
02-12-2025 13:16:56
Поръчката е приключена
Кредитна / Дебитна Карта - Плащане онлайн -
Платено
374.77
лв
102276
30-09-2025 22:47:39
Поръчката е приключена
Кредитна / Дебитна Карта - Плащане онлайн -
Платено
508.06
лв
11678
23-09-2022 18:20:56
Поръчката е приключена
Наложен Платеж при получаване в Брой или с Карта
2,357.00
лв
Поръчка Номер
110171
102276
11678
Дата
02-12-2025 13:16:56
30-09-2025 22:47:39
23-09-2022 18:20:56
Статус
Поръчката е приключена
Поръчката е приключена
Поръчката е приключена
Начин на Плащане
Кредитна / Дебитна Карта - Плащане онлайн -
Платено
Кредитна / Дебитна Карта - Плащане онлайн -
Платено
Наложен Платеж при получаване в Брой или с Карта
Тотал
374.77
лв
508.06
лв
2,357.00
лв
Действия
Запишете се за нашият Бюлетин
Запишете се за нашият Бюлетин
Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.
[EMAIL]
Запиши се
Facebook
Twitter
Instagram
xtreme
xtreme
Ако имате въпроси свържете се с нас!
Ако имате въпроси свържете се с нас!
[EMAIL]
[EMAIL]
+359 886 177 222
+359 886 177 222
Информация
Информация
Доставка
Доставка
Условия
Условия
Рекламация
Рекламация
Контакти
Контакти
За Нас
За Нас
Потребител
Потребител
Профил
Профил
История на Поръчките
История на Поръчките
Любими
Любими
GDPR
GDPR
Лични Данни
Лични Данни
Методи за Плащане
Методи за Плащане
Наложен Платеж
Кредитна/Дебитна Карта
Банков Превод
На изплащане ПБ Лични Финанси
Copyright © 2023
Xtreme.bg
Xtreme.bg
- Всички права запазени.
Онлайн магазин вървящ на
XCore
XCore...
|
7580
|
|
7582
|
141
|
26
|
2026-04-13T16:07:16.782147+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096436782_m1.jpg...
|
Firefox
|
Поръчки — Personal
|
True
|
xtreme.bg/shop/orders.php?id=110171
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Поръчки
Поръчки
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
0€ / 0 лв.
0€ / 0 лв.
Всички Категории
Всички Категории
Търси в Продуктите ...
Compares
0
Сравни
Wishlists
0
Любими
Поръчка 110171
Поръчка
110171
Начало
Начало
»
Поръчка 110171
Поръчка
110171
СТАТУС: ПОРЪЧКАТА Е ПРИКЛЮЧЕНА
Вашето Плащане е Потвърдено
Код
Дата
Описание
Коментар
Допълнителна Информация
Изпратена с куриер на Спиди:
63370004854
148
02-12-2025 13:54:00
Получена информация за пратка
Очаквана дата за доставка: 04.12.2025
39
03-12-2025 17:53:44
Приемане от подател
175
03-12-2025 20:28:04
Предикт
Планирана доставка на 04.12.2025 между 09:58 и 10:58
11
03-12-2025 20:47:53
Приемане от куриер/служител
2
04-12-2025 00:05:52
Изпращане от офис
1
04-12-2025 01:21:38
Пристигане в офис
12
05-12-2025 07:38:09
Предаване на куриер за доставка
-14
05-12-2025 15:54:46
Доставка на клиент
Код
Изпратена с куриер на Спиди:
63370004854
148
39
175
11
2
1
12
-14
Дата
Изпратена с куриер на Спиди:
63370004854
02-12-2025 13:54:00
03-12-2025 17:53:44
03-12-2025 20:28:04
03-12-2025 20:47:53
04-12-2025 00:05:52
04-12-2025 01:21:38
05-12-2025 07:38:09
05-12-2025 15:54:46
Описание
Изпратена с куриер на Спиди:
63370004854
Получена информация за пратка
Приемане от подател
Предикт
Приемане от куриер/служител
Изпращане от офис
Пристигане в офис
Предаване на куриер за доставка
Доставка на клиент
Коментар
Изпратена с куриер на Спиди:
63370004854
Очаквана дата за доставка: 04.12.2025
Планирана доставка на 04.12.2025 между 09:58 и 10:58
Допълнителна Информация
Изпратена с куриер на Спиди:
63370004854
ПОРЪЧКА
Номер:
110171
Дата:
02-12-2025 13:16:56
Email:
[EMAIL]
Адрес за доставка
Име
Лукаш Ковлик
Местоположение
София
Адрес
Богомил Райнов 4
Телефон
[PHONE]
Поръчител
Име
Lukáš Koválik
Имейл
[EMAIL]
Телефон
[PHONE]
Информация за плащането
Метод на плащане
Кредитна / Дебитна Карта - Плащане онлайн
Инструкции за плащане
Няма допълнителни инструкции
Данни за Фактура
Не е указано
Информация за доставката
Метод на доставка
До Адрес
Номер на товарителница
63370004854
63370004854
Инструкции за доставка
Няма допълнителни инструкции
Поръчани продукти
Снимка
Име на Продукт
К-во
Ед. Цена
Тотал
Твърд диск, Samsung SSD 990 PRO 2TB PCIe 4.0 NVMe 2.0 M.2 V-NAND 3-bit MLC, 256-bit Encryption, Read 7450 MB/s Write 6900 MB/s
SKU:
MZ-V9P2T0BW
1.00
€191.62
€191.62
Общо
€191
62
/
374
78
лв
Снимка
Общо
Име на Продукт
Твърд диск, Samsung SSD 990 PRO 2TB PCIe 4.0 NVMe 2.0 M.2 V-NAND 3-bit MLC, 256-bit Encryption, Read 7450 MB/s Write 6900 MB/s
SKU:
MZ-V9P2T0BW
Общо
К-во
1.00
Общо
Ед. Цена
€191.62
€191
62
/
374
78
лв
Тотал
€191.62
Допълнителни инструкции
За да разгледате тази поръчка във вашия профил
натиснете тук
натиснете тук
.
ВЪРНИ СЕ В ПОРЪЧКИ
Запишете се за нашият Бюлетин
Запишете се за нашият Бюлетин
Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.
[EMAIL]
Запиши се
Facebook
Twitter
Instagram
xtreme
xtreme
Ако имате въпроси свържете се с нас!
Ако имате въпроси свържете се с нас!
[EMAIL]
[EMAIL]
+359 886 177 222
+359 886 177 222
Информация
Информация
Доставка
Доставка
Условия
Условия
Рекламация
Рекламация
Контакти
Контакти
За Нас
За Нас
Потребител
Потребител
Профил
Профил
История на Поръчките
История на Поръчките
Любими
Любими
GDPR
GDPR
Лични Данни
Лични Данни
Методи за Плащане
Методи за Плащане
Наложен Платеж
Кредитна/Дебитна Карта
Банков Превод
На изплащане ПБ Лични Финанси
Copyright © 2023
Xtreme.bg
Xtreme.bg
- Всички права запазени.
Онлайн магазин вървящ на
XCore
XCore...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Inbox - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Shameless • HBO Max","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Shameless • HBO Max","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Mute tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Machines - Tailscale","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Machines - Tailscale","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe Dashboard","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe Dashboard","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Поръчки","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Поръчки","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"google maps timeline export - Google Search","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"google maps timeline export - Google Search","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New Tab","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"0886 177 222","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0886 177 222","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"info@xtreme.bg","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"info@xtreme.bg","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"facebook","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"twitter","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"instagram","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"xtreme","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"НАЧАЛО","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"НАЧАЛО","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"МАГАЗИН","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"МАГАЗИН","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"БЛОГ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"БЛОГ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"КОНТАКТИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"КОНТАКТИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"РЕКЛАМАЦИИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"РЕКЛАМАЦИИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Lukáš Koválik","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":" 0€ / 0 лв.","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0€ / 0 лв.","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Всички Категории","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Всички Категории","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Търси в Продуктите ...","depth":11,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Compares","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Сравни","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Wishlists","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Любими","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Поръчка 110171","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Поръчка","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"110171","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Начало","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Начало","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"»","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Поръчка 110171","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Поръчка","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"110171","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"СТАТУС: ПОРЪЧКАТА Е ПРИКЛЮЧЕНА","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Вашето Плащане е Потвърдено","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Код","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Дата","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Описание","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Коментар","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Допълнителна Информация","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Изпратена с куриер на Спиди:","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"63370004854","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"148","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"02-12-2025 13:54:00","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Получена информация за пратка","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Очаквана дата за доставка: 04.12.2025","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"39","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"03-12-2025 17:53:44","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Приемане от подател","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"175","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"03-12-2025 20:28:04","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Предикт","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Планирана доставка на 04.12.2025 между 09:58 и 10:58","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"03-12-2025 20:47:53","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Приемане от куриер/служител","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"04-12-2025 00:05:52","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Изпращане от офис","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"04-12-2025 01:21:38","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Пристигане в офис","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"12","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"05-12-2025 07:38:09","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Предаване на куриер за доставка","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"-14","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"05-12-2025 15:54:46","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Доставка на клиент","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Код","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Изпратена с куриер на Спиди:","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"63370004854","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"148","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"39","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"175","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"12","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"-14","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Дата","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Изпратена с куриер на Спиди:","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"63370004854","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"02-12-2025 13:54:00","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"03-12-2025 17:53:44","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"03-12-2025 20:28:04","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"03-12-2025 20:47:53","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"04-12-2025 00:05:52","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"04-12-2025 01:21:38","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"05-12-2025 07:38:09","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"05-12-2025 15:54:46","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Описание","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Изпратена с куриер на Спиди:","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"63370004854","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Получена информация за пратка","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Приемане от подател","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Предикт","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Приемане от куриер/служител","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Изпращане от офис","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Пристигане в офис","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Предаване на куриер за доставка","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Доставка на клиент","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Коментар","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Изпратена с куриер на Спиди:","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"63370004854","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Очаквана дата за доставка: 04.12.2025","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Планирана доставка на 04.12.2025 между 09:58 и 10:58","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Допълнителна Информация","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Изпратена с куриер на Спиди:","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"63370004854","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ПОРЪЧКА","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Номер:","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"110171","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Дата:","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"02-12-2025 13:16:56","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Email:","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"kovaliklukas@gmail.com","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Адрес за доставка","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Име","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Лукаш Ковлик","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Местоположение","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"София","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Адрес","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Богомил Райнов 4","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Телефон","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+359877878118","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Поръчител","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Име","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Lukáš Koválik","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Имейл","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"kovaliklukas@gmail.com","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Телефон","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+359877878118","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Информация за плащането","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Метод на плащане","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Кредитна / Дебитна Карта - Плащане онлайн","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Инструкции за плащане","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Няма допълнителни инструкции","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Данни за Фактура","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Не е указано","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Информация за доставката","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Метод на доставка","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"До Адрес","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Номер на товарителница","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"63370004854","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"63370004854","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Инструкции за доставка","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Няма допълнителни инструкции","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Поръчани продукти","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Снимка","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Име на Продукт","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"К-во","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ед. Цена","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Тотал","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Твърд диск, Samsung SSD 990 PRO 2TB PCIe 4.0 NVMe 2.0 M.2 V-NAND 3-bit MLC, 256-bit Encryption, Read 7450 MB/s Write 6900 MB/s","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"SKU:","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"MZ-V9P2T0BW","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1.00","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€191.62","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€191.62","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Общо","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€191","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"62","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"374","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"78","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Снимка","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Общо","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Име на Продукт","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Твърд диск, Samsung SSD 990 PRO 2TB PCIe 4.0 NVMe 2.0 M.2 V-NAND 3-bit MLC, 256-bit Encryption, Read 7450 MB/s Write 6900 MB/s","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"SKU:","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"MZ-V9P2T0BW","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Общо","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"К-во","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1.00","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Общо","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ед. Цена","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€191.62","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€191","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"62","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"374","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"78","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Тотал","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€191.62","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Допълнителни инструкции","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"За да разгледате тази поръчка във вашия профил","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"натиснете тук","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"натиснете тук","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":".","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"ВЪРНИ СЕ В ПОРЪЧКИ","depth":9,"bounds":{"left":0.50972223,"top":0.0,"width":0.15625,"height":0.04111111},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Запишете се за нашият Бюлетин","depth":7,"bounds":{"left":0.0,"top":0.15333334,"width":0.38541666,"height":0.02111111},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Запишете се за нашият Бюлетин","depth":8,"bounds":{"left":0.0,"top":0.14888889,"width":0.19930555,"height":0.028888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.","depth":8,"bounds":{"left":0.0,"top":0.17444444,"width":0.34097221,"height":0.04111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"kovaliklukas@gmail.com","depth":8,"bounds":{"left":0.35069445,"top":0.15777777,"width":0.46805555,"height":0.053333335},"value":"kovaliklukas@gmail.com","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Запиши се","depth":8,"bounds":{"left":0.81875,"top":0.16444445,"width":0.09166667,"height":0.04},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Facebook","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Twitter","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Instagram","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"xtreme","depth":9,"bounds":{"left":0.0,"top":0.25444445,"width":0.3236111,"height":0.08888889},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"xtreme","depth":10,"bounds":{"left":0.0,"top":0.31666666,"width":0.27847221,"height":0.026666667},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"bounds":{"left":0.0,"top":0.37666667,"width":0.027777778,"height":0.044444446},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Ако имате въпроси свържете се с нас!","depth":10,"bounds":{"left":0.0,"top":0.37333333,"width":0.2923611,"height":0.027777778},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ако имате въпроси свържете се с нас!","depth":11,"bounds":{"left":0.0,"top":0.37666667,"width":0.17986111,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"info@xtreme.bg","depth":11,"bounds":{"left":0.0,"top":0.42222223,"width":0.06944445,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"info@xtreme.bg","depth":12,"bounds":{"left":0.0,"top":0.42222223,"width":0.06944445,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"+359 886 177 222","depth":10,"bounds":{"left":0.0,"top":0.46555555,"width":0.10069445,"height":0.026666667},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"+359 886 177 222","depth":11,"bounds":{"left":0.0,"top":0.46555555,"width":0.10069445,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Информация","depth":9,"bounds":{"left":0.25416666,"top":0.25444445,"width":0.32291666,"height":0.02111111},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Информация","depth":10,"bounds":{"left":0.25416666,"top":0.2522222,"width":0.075,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Доставка","depth":11,"bounds":{"left":0.25416666,"top":0.29555556,"width":0.044444446,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Доставка","depth":12,"bounds":{"left":0.25416666,"top":0.29555556,"width":0.044444446,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Условия","depth":11,"bounds":{"left":0.25416666,"top":0.32444444,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Условия","depth":12,"bounds":{"left":0.25416666,"top":0.32444444,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Рекламация","depth":11,"bounds":{"left":0.25416666,"top":0.35222223,"width":0.056944445,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Рекламация","depth":12,"bounds":{"left":0.25416666,"top":0.35222223,"width":0.056944445,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Контакти","depth":11,"bounds":{"left":0.25416666,"top":0.38111112,"width":0.043055557,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Контакти","depth":12,"bounds":{"left":0.25416666,"top":0.38111112,"width":0.043055557,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"За Нас","depth":11,"bounds":{"left":0.25416666,"top":0.40888888,"width":0.030555556,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"За Нас","depth":12,"bounds":{"left":0.25416666,"top":0.40888888,"width":0.030555556,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Потребител","depth":9,"bounds":{"left":0.59791666,"top":0.25444445,"width":0.3236111,"height":0.02111111},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Потребител","depth":10,"bounds":{"left":0.59791666,"top":0.2522222,"width":0.06736111,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Профил","depth":11,"bounds":{"left":0.59791666,"top":0.29555556,"width":0.036805555,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Профил","depth":12,"bounds":{"left":0.59791666,"top":0.29555556,"width":0.036805555,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"История на Поръчките","depth":11,"bounds":{"left":0.59791666,"top":0.32444444,"width":0.104166664,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"История на Поръчките","depth":12,"bounds":{"left":0.59791666,"top":0.32444444,"width":0.104166664,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Любими","depth":11,"bounds":{"left":0.59791666,"top":0.35222223,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Любими","depth":12,"bounds":{"left":0.59791666,"top":0.35222223,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"GDPR","depth":11,"bounds":{"left":0.59791666,"top":0.38111112,"width":0.025,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"GDPR","depth":12,"bounds":{"left":0.59791666,"top":0.38111112,"width":0.025,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Лични Данни","depth":11,"bounds":{"left":0.59791666,"top":0.40888888,"width":0.061805554,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Лични Данни","depth":12,"bounds":{"left":0.59791666,"top":0.40888888,"width":0.061805554,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Методи за Плащане","depth":9,"bounds":{"left":0.9423611,"top":0.25444445,"width":0.057638884,"height":0.027777778},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Методи за Плащане","depth":10,"bounds":{"left":0.9423611,"top":0.25555557,"width":0.057638884,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Наложен Платеж","depth":11,"bounds":{"left":0.9423611,"top":0.30333334,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Кредитна/Дебитна Карта","depth":11,"bounds":{"left":0.9423611,"top":0.3311111,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Банков Превод","depth":11,"bounds":{"left":0.9423611,"top":0.38666666,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"На изплащане ПБ Лични Финанси","depth":11,"bounds":{"left":0.9423611,"top":0.41444445,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Copyright © 2023","depth":8,"bounds":{"left":0.39097223,"top":0.5322222,"width":0.08055556,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Xtreme.bg","depth":8,"bounds":{"left":0.47152779,"top":0.5322222,"width":0.046527777,"height":0.02111111},"help_text":"Xtreme Online Store","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Xtreme.bg","depth":9,"bounds":{"left":0.47152779,"top":0.5322222,"width":0.046527777,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"- Всички права запазени.","depth":8,"bounds":{"left":0.51805556,"top":0.5322222,"width":0.11875,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Онлайн магазин вървящ на","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"XCore","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"XCore","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
6564665252668614906
|
-869926598639758904
|
click
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Поръчки
Поръчки
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
0€ / 0 лв.
0€ / 0 лв.
Всички Категории
Всички Категории
Търси в Продуктите ...
Compares
0
Сравни
Wishlists
0
Любими
Поръчка 110171
Поръчка
110171
Начало
Начало
»
Поръчка 110171
Поръчка
110171
СТАТУС: ПОРЪЧКАТА Е ПРИКЛЮЧЕНА
Вашето Плащане е Потвърдено
Код
Дата
Описание
Коментар
Допълнителна Информация
Изпратена с куриер на Спиди:
63370004854
148
02-12-2025 13:54:00
Получена информация за пратка
Очаквана дата за доставка: 04.12.2025
39
03-12-2025 17:53:44
Приемане от подател
175
03-12-2025 20:28:04
Предикт
Планирана доставка на 04.12.2025 между 09:58 и 10:58
11
03-12-2025 20:47:53
Приемане от куриер/служител
2
04-12-2025 00:05:52
Изпращане от офис
1
04-12-2025 01:21:38
Пристигане в офис
12
05-12-2025 07:38:09
Предаване на куриер за доставка
-14
05-12-2025 15:54:46
Доставка на клиент
Код
Изпратена с куриер на Спиди:
63370004854
148
39
175
11
2
1
12
-14
Дата
Изпратена с куриер на Спиди:
63370004854
02-12-2025 13:54:00
03-12-2025 17:53:44
03-12-2025 20:28:04
03-12-2025 20:47:53
04-12-2025 00:05:52
04-12-2025 01:21:38
05-12-2025 07:38:09
05-12-2025 15:54:46
Описание
Изпратена с куриер на Спиди:
63370004854
Получена информация за пратка
Приемане от подател
Предикт
Приемане от куриер/служител
Изпращане от офис
Пристигане в офис
Предаване на куриер за доставка
Доставка на клиент
Коментар
Изпратена с куриер на Спиди:
63370004854
Очаквана дата за доставка: 04.12.2025
Планирана доставка на 04.12.2025 между 09:58 и 10:58
Допълнителна Информация
Изпратена с куриер на Спиди:
63370004854
ПОРЪЧКА
Номер:
110171
Дата:
02-12-2025 13:16:56
Email:
[EMAIL]
Адрес за доставка
Име
Лукаш Ковлик
Местоположение
София
Адрес
Богомил Райнов 4
Телефон
[PHONE]
Поръчител
Име
Lukáš Koválik
Имейл
[EMAIL]
Телефон
[PHONE]
Информация за плащането
Метод на плащане
Кредитна / Дебитна Карта - Плащане онлайн
Инструкции за плащане
Няма допълнителни инструкции
Данни за Фактура
Не е указано
Информация за доставката
Метод на доставка
До Адрес
Номер на товарителница
63370004854
63370004854
Инструкции за доставка
Няма допълнителни инструкции
Поръчани продукти
Снимка
Име на Продукт
К-во
Ед. Цена
Тотал
Твърд диск, Samsung SSD 990 PRO 2TB PCIe 4.0 NVMe 2.0 M.2 V-NAND 3-bit MLC, 256-bit Encryption, Read 7450 MB/s Write 6900 MB/s
SKU:
MZ-V9P2T0BW
1.00
€191.62
€191.62
Общо
€191
62
/
374
78
лв
Снимка
Общо
Име на Продукт
Твърд диск, Samsung SSD 990 PRO 2TB PCIe 4.0 NVMe 2.0 M.2 V-NAND 3-bit MLC, 256-bit Encryption, Read 7450 MB/s Write 6900 MB/s
SKU:
MZ-V9P2T0BW
Общо
К-во
1.00
Общо
Ед. Цена
€191.62
€191
62
/
374
78
лв
Тотал
€191.62
Допълнителни инструкции
За да разгледате тази поръчка във вашия профил
натиснете тук
натиснете тук
.
ВЪРНИ СЕ В ПОРЪЧКИ
Запишете се за нашият Бюлетин
Запишете се за нашият Бюлетин
Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.
[EMAIL]
Запиши се
Facebook
Twitter
Instagram
xtreme
xtreme
Ако имате въпроси свържете се с нас!
Ако имате въпроси свържете се с нас!
[EMAIL]
[EMAIL]
+359 886 177 222
+359 886 177 222
Информация
Информация
Доставка
Доставка
Условия
Условия
Рекламация
Рекламация
Контакти
Контакти
За Нас
За Нас
Потребител
Потребител
Профил
Профил
История на Поръчките
История на Поръчките
Любими
Любими
GDPR
GDPR
Лични Данни
Лични Данни
Методи за Плащане
Методи за Плащане
Наложен Платеж
Кредитна/Дебитна Карта
Банков Превод
На изплащане ПБ Лични Финанси
Copyright © 2023
Xtreme.bg
Xtreme.bg
- Всички права запазени.
Онлайн магазин вървящ на
XCore
XCore...
|
NULL
|
|
7584
|
141
|
28
|
2026-04-13T16:07:27.306305+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096447306_m1.jpg...
|
Firefox
|
Поръчки — Personal
|
True
|
xtreme.bg/shop/orders.php?id=102276
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Поръчки
Поръчки
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
0€ / 0 лв.
0€ / 0 лв.
Всички Категории
Всички Категории
Търси в Продуктите ...
Compares
0
Сравни
Wishlists
0
Любими
Поръчка 102276
Поръчка
102276
Начало
Начало
»
Поръчка 102276
Поръчка
102276
СТАТУС: ПОРЪЧКАТА Е ПРИКЛЮЧЕНА
Вашето Плащане е Потвърдено
Код
Дата
Описание
Коментар
Допълнителна Информация
Изпратена с куриер на Спиди:
63269382458
148
01-10-2025 18:25:30
Получена информация за пратка
-14
03-10-2025 10:23:37
Доставка на клиент
Код
Изпратена с куриер на Спиди:
63269382458
148
-14
Дата
Изпратена с куриер на Спиди:
63269382458
01-10-2025 18:25:30
03-10-2025 10:23:37
Описание
Изпратена с куриер на Спиди:
63269382458
Получена информация за пратка
Доставка на клиент
Коментар
Изпратена с куриер на Спиди:
63269382458
Допълнителна Информация
Изпратена с куриер на Спиди:
63269382458
ПОРЪЧКА
Номер:
102276
Дата:
30-09-2025 22:47:39
Email:
[EMAIL]
Адрес за доставка
Име
Лукаш Ковлик
Местоположение
София
Адрес
Богомил Райнов 4
Телефон
[PHONE]
Поръчител
Име
Lukáš Koválik
Имейл
[EMAIL]
Телефон
[PHONE]
Информация за плащането
Метод на плащане
Кредитна / Дебитна Карта - Плащане онлайн
Инструкции за плащане
Няма допълнителни инструкции
Данни за Фактура
Не е указано
Информация за доставката
Метод на доставка
До Адрес
Номер на товарителница
63269382458
63269382458
Инструкции за доставка
Няма допълнителни инструкции
Поръчани продукти
Снимка
Име на Продукт
К-во
Ед. Цена
Тотал
WD Gold 10TB SATA 6Gb/s 3.5inch HDD
SKU:
WD103KRYZ
1.00
€259.77
€259.77
Общо
€259
77
/
508
07
лв
Снимка
Общо
Име на Продукт
WD Gold 10TB SATA 6Gb/s 3.5inch HDD
SKU:
WD103KRYZ
Общо
К-во
1.00
Общо
Ед. Цена
€259.77
€259
77
/
508
07
лв
Тотал
€259.77
Допълнителни инструкции
За да разгледате тази поръчка във вашия профил
натиснете тук
натиснете тук
.
ВЪРНИ СЕ В ПОРЪЧКИ
Запишете се за нашият Бюлетин
Запишете се за нашият Бюлетин
Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.
[EMAIL]
Запиши се
Facebook
Twitter
Instagram
xtreme
xtreme
Ако имате въпроси свържете се с нас!
Ако имате въпроси свържете се с нас!
[EMAIL]
[EMAIL]
+359 886 177 222
+359 886 177 222
Информация
Информация
Доставка
Доставка
Условия
Условия
Рекламация
Рекламация
Контакти
Контакти
За Нас
За Нас
Потребител
Потребител
Профил
Профил
История на Поръчките
История на Поръчките
Любими
Любими
GDPR
GDPR
Лични Данни
Лични Данни
Методи за Плащане
Методи за Плащане
Наложен Платеж
Кредитна/Дебитна Карта
Банков Превод
На изплащане ПБ Лични Финанси
Copyright © 2023
Xtreme.bg
Xtreme.bg
- Всички права запазени.
Онлайн магазин вървящ на
XCore
XCore...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Inbox - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Shameless • HBO Max","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Shameless • HBO Max","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Mute tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Machines - Tailscale","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Machines - Tailscale","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe Dashboard","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe Dashboard","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Поръчки","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Поръчки","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"google maps timeline export - Google Search","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"google maps timeline export - Google Search","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New Tab","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"0886 177 222","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0886 177 222","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"info@xtreme.bg","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"info@xtreme.bg","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"facebook","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"twitter","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"instagram","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"xtreme","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"НАЧАЛО","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"НАЧАЛО","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"МАГАЗИН","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"МАГАЗИН","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"БЛОГ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"БЛОГ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"КОНТАКТИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"КОНТАКТИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"РЕКЛАМАЦИИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"РЕКЛАМАЦИИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Lukáš Koválik","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":" 0€ / 0 лв.","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0€ / 0 лв.","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Всички Категории","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Всички Категории","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Търси в Продуктите ...","depth":11,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Compares","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Сравни","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Wishlists","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Любими","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Поръчка 102276","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Поръчка","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"102276","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Начало","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Начало","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"»","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Поръчка 102276","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Поръчка","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"102276","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"СТАТУС: ПОРЪЧКАТА Е ПРИКЛЮЧЕНА","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Вашето Плащане е Потвърдено","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Код","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Дата","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Описание","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Коментар","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Допълнителна Информация","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Изпратена с куриер на Спиди:","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"63269382458","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"148","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"01-10-2025 18:25:30","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Получена информация за пратка","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"-14","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"03-10-2025 10:23:37","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Доставка на клиент","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Код","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Изпратена с куриер на Спиди:","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"63269382458","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"148","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"-14","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Дата","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Изпратена с куриер на Спиди:","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"63269382458","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"01-10-2025 18:25:30","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"03-10-2025 10:23:37","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Описание","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Изпратена с куриер на Спиди:","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"63269382458","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Получена информация за пратка","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Доставка на клиент","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Коментар","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Изпратена с куриер на Спиди:","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"63269382458","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Допълнителна Информация","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Изпратена с куриер на Спиди:","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"63269382458","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ПОРЪЧКА","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Номер:","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"102276","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Дата:","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"30-09-2025 22:47:39","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Email:","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"kovaliklukas@gmail.com","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Адрес за доставка","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Име","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Лукаш Ковлик","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Местоположение","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"София","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Адрес","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Богомил Райнов 4","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Телефон","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+359877878118","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Поръчител","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Име","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Lukáš Koválik","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Имейл","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"kovaliklukas@gmail.com","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Телефон","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+359877878118","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Информация за плащането","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Метод на плащане","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Кредитна / Дебитна Карта - Плащане онлайн","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Инструкции за плащане","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Няма допълнителни инструкции","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Данни за Фактура","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Не е указано","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Информация за доставката","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Метод на доставка","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"До Адрес","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Номер на товарителница","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"63269382458","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"63269382458","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Инструкции за доставка","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Няма допълнителни инструкции","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Поръчани продукти","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Снимка","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Име на Продукт","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"К-во","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ед. Цена","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Тотал","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"WD Gold 10TB SATA 6Gb/s 3.5inch HDD","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"SKU:","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"WD103KRYZ","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1.00","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€259.77","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€259.77","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Общо","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€259","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"77","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"508","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"07","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Снимка","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Общо","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Име на Продукт","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"WD Gold 10TB SATA 6Gb/s 3.5inch HDD","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"SKU:","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"WD103KRYZ","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Общо","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"К-во","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1.00","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Общо","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ед. Цена","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€259.77","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€259","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"77","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"508","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"07","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Тотал","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€259.77","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Допълнителни инструкции","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"За да разгледате тази поръчка във вашия профил","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"натиснете тук","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"натиснете тук","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":".","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"ВЪРНИ СЕ В ПОРЪЧКИ","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Запишете се за нашият Бюлетин","depth":7,"bounds":{"left":0.0,"top":0.027777778,"width":0.38541666,"height":0.02},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Запишете се за нашият Бюлетин","depth":8,"bounds":{"left":0.0,"top":0.023333333,"width":0.19930555,"height":0.028888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.","depth":8,"bounds":{"left":0.0,"top":0.04888889,"width":0.34097221,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"kovaliklukas@gmail.com","depth":8,"bounds":{"left":0.35069445,"top":0.032222223,"width":0.46805555,"height":0.053333335},"value":"kovaliklukas@gmail.com","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Запиши се","depth":8,"bounds":{"left":0.81875,"top":0.03888889,"width":0.09166667,"height":0.04},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Facebook","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Twitter","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Instagram","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"xtreme","depth":9,"bounds":{"left":0.0,"top":0.12888889,"width":0.3236111,"height":0.08888889},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"xtreme","depth":10,"bounds":{"left":0.0,"top":0.19,"width":0.27847221,"height":0.026666667},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"bounds":{"left":0.0,"top":0.25,"width":0.027777778,"height":0.044444446},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Ако имате въпроси свържете се с нас!","depth":10,"bounds":{"left":0.0,"top":0.24777777,"width":0.2923611,"height":0.027777778},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ако имате въпроси свържете се с нас!","depth":11,"bounds":{"left":0.0,"top":0.25111112,"width":0.17986111,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"info@xtreme.bg","depth":11,"bounds":{"left":0.0,"top":0.29666665,"width":0.06944445,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"info@xtreme.bg","depth":12,"bounds":{"left":0.0,"top":0.29666665,"width":0.06944445,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"+359 886 177 222","depth":10,"bounds":{"left":0.0,"top":0.33888888,"width":0.10069445,"height":0.026666667},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"+359 886 177 222","depth":11,"bounds":{"left":0.0,"top":0.33888888,"width":0.10069445,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Информация","depth":9,"bounds":{"left":0.25416666,"top":0.12888889,"width":0.32291666,"height":0.02111111},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Информация","depth":10,"bounds":{"left":0.25416666,"top":0.12555556,"width":0.075,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Доставка","depth":11,"bounds":{"left":0.25416666,"top":0.17,"width":0.044444446,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Доставка","depth":12,"bounds":{"left":0.25416666,"top":0.17,"width":0.044444446,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Условия","depth":11,"bounds":{"left":0.25416666,"top":0.19777778,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Условия","depth":12,"bounds":{"left":0.25416666,"top":0.19777778,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Рекламация","depth":11,"bounds":{"left":0.25416666,"top":0.22666667,"width":0.056944445,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Рекламация","depth":12,"bounds":{"left":0.25416666,"top":0.22666667,"width":0.056944445,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Контакти","depth":11,"bounds":{"left":0.25416666,"top":0.25444445,"width":0.043055557,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Контакти","depth":12,"bounds":{"left":0.25416666,"top":0.25444445,"width":0.043055557,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"За Нас","depth":11,"bounds":{"left":0.25416666,"top":0.28333333,"width":0.030555556,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"За Нас","depth":12,"bounds":{"left":0.25416666,"top":0.28333333,"width":0.030555556,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Потребител","depth":9,"bounds":{"left":0.59791666,"top":0.12888889,"width":0.3236111,"height":0.02111111},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Потребител","depth":10,"bounds":{"left":0.59791666,"top":0.12555556,"width":0.06736111,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Профил","depth":11,"bounds":{"left":0.59791666,"top":0.17,"width":0.036805555,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Профил","depth":12,"bounds":{"left":0.59791666,"top":0.17,"width":0.036805555,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"История на Поръчките","depth":11,"bounds":{"left":0.59791666,"top":0.19777778,"width":0.104166664,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"История на Поръчките","depth":12,"bounds":{"left":0.59791666,"top":0.19777778,"width":0.104166664,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Любими","depth":11,"bounds":{"left":0.59791666,"top":0.22666667,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Любими","depth":12,"bounds":{"left":0.59791666,"top":0.22666667,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"GDPR","depth":11,"bounds":{"left":0.59791666,"top":0.25444445,"width":0.025,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"GDPR","depth":12,"bounds":{"left":0.59791666,"top":0.25444445,"width":0.025,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Лични Данни","depth":11,"bounds":{"left":0.59791666,"top":0.28333333,"width":0.061805554,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Лични Данни","depth":12,"bounds":{"left":0.59791666,"top":0.28333333,"width":0.061805554,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Методи за Плащане","depth":9,"bounds":{"left":0.9423611,"top":0.12888889,"width":0.057638884,"height":0.027777778},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Методи за Плащане","depth":10,"bounds":{"left":0.9423611,"top":0.12888889,"width":0.057638884,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Наложен Платеж","depth":11,"bounds":{"left":0.9423611,"top":0.17777778,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Кредитна/Дебитна Карта","depth":11,"bounds":{"left":0.9423611,"top":0.20555556,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Банков Превод","depth":11,"bounds":{"left":0.9423611,"top":0.2611111,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"На изплащане ПБ Лични Финанси","depth":11,"bounds":{"left":0.9423611,"top":0.2888889,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Copyright © 2023","depth":8,"bounds":{"left":0.39097223,"top":0.40666667,"width":0.08055556,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Xtreme.bg","depth":8,"bounds":{"left":0.47152779,"top":0.40666667,"width":0.046527777,"height":0.02111111},"help_text":"Xtreme Online Store","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Xtreme.bg","depth":9,"bounds":{"left":0.47152779,"top":0.40666667,"width":0.046527777,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"- Всички права запазени.","depth":8,"bounds":{"left":0.51805556,"top":0.40666667,"width":0.11875,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Онлайн магазин вървящ на","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"XCore","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"XCore","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
-4523672142930572511
|
7200488669241199048
|
click
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Поръчки
Поръчки
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
0€ / 0 лв.
0€ / 0 лв.
Всички Категории
Всички Категории
Търси в Продуктите ...
Compares
0
Сравни
Wishlists
0
Любими
Поръчка 102276
Поръчка
102276
Начало
Начало
»
Поръчка 102276
Поръчка
102276
СТАТУС: ПОРЪЧКАТА Е ПРИКЛЮЧЕНА
Вашето Плащане е Потвърдено
Код
Дата
Описание
Коментар
Допълнителна Информация
Изпратена с куриер на Спиди:
63269382458
148
01-10-2025 18:25:30
Получена информация за пратка
-14
03-10-2025 10:23:37
Доставка на клиент
Код
Изпратена с куриер на Спиди:
63269382458
148
-14
Дата
Изпратена с куриер на Спиди:
63269382458
01-10-2025 18:25:30
03-10-2025 10:23:37
Описание
Изпратена с куриер на Спиди:
63269382458
Получена информация за пратка
Доставка на клиент
Коментар
Изпратена с куриер на Спиди:
63269382458
Допълнителна Информация
Изпратена с куриер на Спиди:
63269382458
ПОРЪЧКА
Номер:
102276
Дата:
30-09-2025 22:47:39
Email:
[EMAIL]
Адрес за доставка
Име
Лукаш Ковлик
Местоположение
София
Адрес
Богомил Райнов 4
Телефон
[PHONE]
Поръчител
Име
Lukáš Koválik
Имейл
[EMAIL]
Телефон
[PHONE]
Информация за плащането
Метод на плащане
Кредитна / Дебитна Карта - Плащане онлайн
Инструкции за плащане
Няма допълнителни инструкции
Данни за Фактура
Не е указано
Информация за доставката
Метод на доставка
До Адрес
Номер на товарителница
63269382458
63269382458
Инструкции за доставка
Няма допълнителни инструкции
Поръчани продукти
Снимка
Име на Продукт
К-во
Ед. Цена
Тотал
WD Gold 10TB SATA 6Gb/s 3.5inch HDD
SKU:
WD103KRYZ
1.00
€259.77
€259.77
Общо
€259
77
/
508
07
лв
Снимка
Общо
Име на Продукт
WD Gold 10TB SATA 6Gb/s 3.5inch HDD
SKU:
WD103KRYZ
Общо
К-во
1.00
Общо
Ед. Цена
€259.77
€259
77
/
508
07
лв
Тотал
€259.77
Допълнителни инструкции
За да разгледате тази поръчка във вашия профил
натиснете тук
натиснете тук
.
ВЪРНИ СЕ В ПОРЪЧКИ
Запишете се за нашият Бюлетин
Запишете се за нашият Бюлетин
Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.
[EMAIL]
Запиши се
Facebook
Twitter
Instagram
xtreme
xtreme
Ако имате въпроси свържете се с нас!
Ако имате въпроси свържете се с нас!
[EMAIL]
[EMAIL]
+359 886 177 222
+359 886 177 222
Информация
Информация
Доставка
Доставка
Условия
Условия
Рекламация
Рекламация
Контакти
Контакти
За Нас
За Нас
Потребител
Потребител
Профил
Профил
История на Поръчките
История на Поръчките
Любими
Любими
GDPR
GDPR
Лични Данни
Лични Данни
Методи за Плащане
Методи за Плащане
Наложен Платеж
Кредитна/Дебитна Карта
Банков Превод
На изплащане ПБ Лични Финанси
Copyright © 2023
Xtreme.bg
Xtreme.bg
- Всички права запазени.
Онлайн магазин вървящ на
XCore
XCore...
|
NULL
|
|
7586
|
141
|
30
|
2026-04-13T16:07:33.721509+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096453721_m1.jpg...
|
Firefox
|
Поръчки — Personal
|
True
|
xtreme.bg/shop/orders.php?id=11678
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Поръчки
Поръчки
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
0€ / 0 лв.
0€ / 0 лв.
Всички Категории
Всички Категории
Търси в Продуктите ...
Compares
0
Сравни
Wishlists
0
Любими
Поръчка 11678
Поръчка
11678
Начало
Начало
»
Поръчка 11678
Поръчка
11678
СТАТУС: ПОРЪЧКАТА Е ПРИКЛЮЧЕНА
ПОРЪЧКА
Номер:
11678
Дата:
23-09-2022 18:20:56
Email:
[EMAIL]
Адрес за доставка
Име
Лукаш Ковлик
Местоположение
София
Адрес
Богомил Райнов 4
Телефон
[PHONE]
Поръчител
Име
Lukáš Koválik
Имейл
[EMAIL]
Телефон
[PHONE]
Информация за плащането
Метод на плащане
Наложен Платеж при получаване в Брой или с Карта
Инструкции за плащане
Плащане в брой или Кредитна/Дебитна карта при получаване на поръчката
Данни за Фактура
Не е указано
Информация за доставката
Метод на доставка
До Адрес
Номер на товарителница
Инструкции за доставка
Няма допълнителни инструкции
Поръчани продукти
Снимка
Име на Продукт
К-во
Ед. Цена
Тотал
Телевизор, Sony XR-55X90K 55" 4K HDR TV BRAVIA , Full Array LED, Cognitive Processor XR™, XR Triluminos PRO, XR Motion Clarity™, 3D Surround Upscaling, Dolby Atmos, DVB-C / DVB-T/T2 / DVB-S/S2, USB, Android TV, Google TV, Voice search, Black
SKU:
XR55X90KAEP
1.00
€1,205.11
€1,205.11
Общо
€1205
11
/
2356
99
лв
Снимка
Общо
Име на Продукт
Телевизор, Sony XR-55X90K 55" 4K HDR TV BRAVIA , Full Array LED, Cognitive Processor XR™, XR Triluminos PRO, XR Motion Clarity™, 3D Surround Upscaling, Dolby Atmos, DVB-C / DVB-T/T2 / DVB-S/S2, USB, Android TV, Google TV, Voice search, Black
SKU:
XR55X90KAEP
Общо
К-во
1.00
Общо
Ед. Цена
€1,205.11
€1205
11
/
2356
99
лв
Тотал
€1,205.11
Допълнителни инструкции
За да разгледате тази поръчка във вашия профил
натиснете тук
натиснете тук
.
ВЪРНИ СЕ В ПОРЪЧКИ
Запишете се за нашият Бюлетин
Запишете се за нашият Бюлетин
Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.
[EMAIL]
Запиши се
Facebook
Twitter
Instagram
xtreme
xtreme
Ако имате въпроси свържете се с нас!
Ако имате въпроси свържете се с нас!
[EMAIL]
[EMAIL]
+359 886 177 222
+359 886 177 222
Информация
Информация
Доставка
Доставка
Условия
Условия
Рекламация
Рекламация
Контакти
Контакти
За Нас
За Нас
Потребител
Потребител
Профил
Профил
История на Поръчките
История на Поръчките
Любими
Любими
GDPR
GDPR
Лични Данни
Лични Данни
Методи за Плащане
Методи за Плащане
Наложен Платеж
Кредитна/Дебитна Карта
Банков Превод
На изплащане ПБ Лични Финанси
Copyright © 2023
Xtreme.bg
Xtreme.bg
- Всички права запазени.
Онлайн магазин вървящ на
XCore
XCore...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Inbox - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Shameless • HBO Max","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Shameless • HBO Max","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Mute tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Machines - Tailscale","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Machines - Tailscale","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe Dashboard","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe Dashboard","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Поръчки","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Поръчки","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"google maps timeline export - Google Search","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"google maps timeline export - Google Search","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New Tab","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"0886 177 222","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0886 177 222","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"info@xtreme.bg","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"info@xtreme.bg","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"facebook","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"twitter","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"instagram","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"xtreme","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"НАЧАЛО","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"НАЧАЛО","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"МАГАЗИН","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"МАГАЗИН","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"БЛОГ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"БЛОГ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"КОНТАКТИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"КОНТАКТИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"РЕКЛАМАЦИИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"РЕКЛАМАЦИИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Lukáš Koválik","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":" 0€ / 0 лв.","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0€ / 0 лв.","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Всички Категории","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Всички Категории","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Търси в Продуктите ...","depth":11,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Compares","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Сравни","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Wishlists","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Любими","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Поръчка 11678","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Поръчка","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11678","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Начало","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Начало","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"»","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Поръчка 11678","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Поръчка","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11678","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"СТАТУС: ПОРЪЧКАТА Е ПРИКЛЮЧЕНА","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ПОРЪЧКА","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Номер:","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11678","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Дата:","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"23-09-2022 18:20:56","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Email:","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"kovaliklukas@gmail.com","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Адрес за доставка","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Име","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Лукаш Ковлик","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Местоположение","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"София","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Адрес","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Богомил Райнов 4","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Телефон","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+359877878118","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Поръчител","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Име","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Lukáš Koválik","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Имейл","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"kovaliklukas@gmail.com","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Телефон","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+359877878118","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Информация за плащането","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Метод на плащане","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Наложен Платеж при получаване в Брой или с Карта","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Инструкции за плащане","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Плащане в брой или Кредитна/Дебитна карта при получаване на поръчката","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Данни за Фактура","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Не е указано","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Информация за доставката","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Метод на доставка","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"До Адрес","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Номер на товарителница","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Инструкции за доставка","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Няма допълнителни инструкции","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Поръчани продукти","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Снимка","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Име на Продукт","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"К-во","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ед. Цена","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Тотал","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Телевизор, Sony XR-55X90K 55\" 4K HDR TV BRAVIA , Full Array LED, Cognitive Processor XR™, XR Triluminos PRO, XR Motion Clarity™, 3D Surround Upscaling, Dolby Atmos, DVB-C / DVB-T/T2 / DVB-S/S2, USB, Android TV, Google TV, Voice search, Black","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"SKU:","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"XR55X90KAEP","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1.00","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€1,205.11","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€1,205.11","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Общо","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€1205","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2356","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"99","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Снимка","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Общо","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Име на Продукт","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Телевизор, Sony XR-55X90K 55\" 4K HDR TV BRAVIA , Full Array LED, Cognitive Processor XR™, XR Triluminos PRO, XR Motion Clarity™, 3D Surround Upscaling, Dolby Atmos, DVB-C / DVB-T/T2 / DVB-S/S2, USB, Android TV, Google TV, Voice search, Black","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"SKU:","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"XR55X90KAEP","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Общо","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"К-во","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1.00","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Общо","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ед. Цена","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€1,205.11","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€1205","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2356","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"99","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Тотал","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€1,205.11","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Допълнителни инструкции","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"За да разгледате тази поръчка във вашия профил","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"натиснете тук","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"натиснете тук","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":".","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"ВЪРНИ СЕ В ПОРЪЧКИ","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Запишете се за нашият Бюлетин","depth":7,"bounds":{"left":0.0,"top":0.03,"width":0.38541666,"height":0.02},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Запишете се за нашият Бюлетин","depth":8,"bounds":{"left":0.0,"top":0.025555555,"width":0.19930555,"height":0.028888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.","depth":8,"bounds":{"left":0.0,"top":0.05111111,"width":0.34097221,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"kovaliklukas@gmail.com","depth":8,"bounds":{"left":0.35069445,"top":0.034444444,"width":0.46805555,"height":0.053333335},"value":"kovaliklukas@gmail.com","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Запиши се","depth":8,"bounds":{"left":0.81875,"top":0.04111111,"width":0.09166667,"height":0.04},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Facebook","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Twitter","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Instagram","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"xtreme","depth":9,"bounds":{"left":0.0,"top":0.13111112,"width":0.3236111,"height":0.08888889},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"xtreme","depth":10,"bounds":{"left":0.0,"top":0.19222222,"width":0.27847221,"height":0.026666667},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"bounds":{"left":0.0,"top":0.2522222,"width":0.027777778,"height":0.044444446},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Ако имате въпроси свържете се с нас!","depth":10,"bounds":{"left":0.0,"top":0.25,"width":0.2923611,"height":0.027777778},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ако имате въпроси свържете се с нас!","depth":11,"bounds":{"left":0.0,"top":0.25333333,"width":0.17986111,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"info@xtreme.bg","depth":11,"bounds":{"left":0.0,"top":0.2988889,"width":0.06944445,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"info@xtreme.bg","depth":12,"bounds":{"left":0.0,"top":0.2988889,"width":0.06944445,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"+359 886 177 222","depth":10,"bounds":{"left":0.0,"top":0.34111112,"width":0.10069445,"height":0.026666667},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"+359 886 177 222","depth":11,"bounds":{"left":0.0,"top":0.34111112,"width":0.10069445,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Информация","depth":9,"bounds":{"left":0.25416666,"top":0.13111112,"width":0.32291666,"height":0.02111111},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Информация","depth":10,"bounds":{"left":0.25416666,"top":0.12777779,"width":0.075,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Доставка","depth":11,"bounds":{"left":0.25416666,"top":0.17222223,"width":0.044444446,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Доставка","depth":12,"bounds":{"left":0.25416666,"top":0.17222223,"width":0.044444446,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Условия","depth":11,"bounds":{"left":0.25416666,"top":0.2,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Условия","depth":12,"bounds":{"left":0.25416666,"top":0.2,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Рекламация","depth":11,"bounds":{"left":0.25416666,"top":0.22888888,"width":0.056944445,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Рекламация","depth":12,"bounds":{"left":0.25416666,"top":0.22888888,"width":0.056944445,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Контакти","depth":11,"bounds":{"left":0.25416666,"top":0.25666666,"width":0.043055557,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Контакти","depth":12,"bounds":{"left":0.25416666,"top":0.25666666,"width":0.043055557,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"За Нас","depth":11,"bounds":{"left":0.25416666,"top":0.28555554,"width":0.030555556,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"За Нас","depth":12,"bounds":{"left":0.25416666,"top":0.28555554,"width":0.030555556,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Потребител","depth":9,"bounds":{"left":0.59791666,"top":0.13111112,"width":0.3236111,"height":0.02111111},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Потребител","depth":10,"bounds":{"left":0.59791666,"top":0.12777779,"width":0.06736111,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Профил","depth":11,"bounds":{"left":0.59791666,"top":0.17222223,"width":0.036805555,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Профил","depth":12,"bounds":{"left":0.59791666,"top":0.17222223,"width":0.036805555,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"История на Поръчките","depth":11,"bounds":{"left":0.59791666,"top":0.2,"width":0.104166664,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"История на Поръчките","depth":12,"bounds":{"left":0.59791666,"top":0.2,"width":0.104166664,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Любими","depth":11,"bounds":{"left":0.59791666,"top":0.22888888,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Любими","depth":12,"bounds":{"left":0.59791666,"top":0.22888888,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"GDPR","depth":11,"bounds":{"left":0.59791666,"top":0.25666666,"width":0.025,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"GDPR","depth":12,"bounds":{"left":0.59791666,"top":0.25666666,"width":0.025,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Лични Данни","depth":11,"bounds":{"left":0.59791666,"top":0.28555554,"width":0.061805554,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Лични Данни","depth":12,"bounds":{"left":0.59791666,"top":0.28555554,"width":0.061805554,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Методи за Плащане","depth":9,"bounds":{"left":0.9423611,"top":0.13111112,"width":0.057638884,"height":0.027777778},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Методи за Плащане","depth":10,"bounds":{"left":0.9423611,"top":0.13111112,"width":0.057638884,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Наложен Платеж","depth":11,"bounds":{"left":0.9423611,"top":0.18,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Кредитна/Дебитна Карта","depth":11,"bounds":{"left":0.9423611,"top":0.20777778,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Банков Превод","depth":11,"bounds":{"left":0.9423611,"top":0.26333332,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"На изплащане ПБ Лични Финанси","depth":11,"bounds":{"left":0.9423611,"top":0.2911111,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Copyright © 2023","depth":8,"bounds":{"left":0.39097223,"top":0.40888888,"width":0.08055556,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Xtreme.bg","depth":8,"bounds":{"left":0.47152779,"top":0.40888888,"width":0.046527777,"height":0.02111111},"help_text":"Xtreme Online Store","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Xtreme.bg","depth":9,"bounds":{"left":0.47152779,"top":0.40888888,"width":0.046527777,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"- Всички права запазени.","depth":8,"bounds":{"left":0.51805556,"top":0.40888888,"width":0.11875,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Онлайн магазин вървящ на","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"XCore","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"XCore","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
4382384064935404413
|
5884346946771811026
|
click
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Поръчки
Поръчки
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
0€ / 0 лв.
0€ / 0 лв.
Всички Категории
Всички Категории
Търси в Продуктите ...
Compares
0
Сравни
Wishlists
0
Любими
Поръчка 11678
Поръчка
11678
Начало
Начало
»
Поръчка 11678
Поръчка
11678
СТАТУС: ПОРЪЧКАТА Е ПРИКЛЮЧЕНА
ПОРЪЧКА
Номер:
11678
Дата:
23-09-2022 18:20:56
Email:
[EMAIL]
Адрес за доставка
Име
Лукаш Ковлик
Местоположение
София
Адрес
Богомил Райнов 4
Телефон
[PHONE]
Поръчител
Име
Lukáš Koválik
Имейл
[EMAIL]
Телефон
[PHONE]
Информация за плащането
Метод на плащане
Наложен Платеж при получаване в Брой или с Карта
Инструкции за плащане
Плащане в брой или Кредитна/Дебитна карта при получаване на поръчката
Данни за Фактура
Не е указано
Информация за доставката
Метод на доставка
До Адрес
Номер на товарителница
Инструкции за доставка
Няма допълнителни инструкции
Поръчани продукти
Снимка
Име на Продукт
К-во
Ед. Цена
Тотал
Телевизор, Sony XR-55X90K 55" 4K HDR TV BRAVIA , Full Array LED, Cognitive Processor XR™, XR Triluminos PRO, XR Motion Clarity™, 3D Surround Upscaling, Dolby Atmos, DVB-C / DVB-T/T2 / DVB-S/S2, USB, Android TV, Google TV, Voice search, Black
SKU:
XR55X90KAEP
1.00
€1,205.11
€1,205.11
Общо
€1205
11
/
2356
99
лв
Снимка
Общо
Име на Продукт
Телевизор, Sony XR-55X90K 55" 4K HDR TV BRAVIA , Full Array LED, Cognitive Processor XR™, XR Triluminos PRO, XR Motion Clarity™, 3D Surround Upscaling, Dolby Atmos, DVB-C / DVB-T/T2 / DVB-S/S2, USB, Android TV, Google TV, Voice search, Black
SKU:
XR55X90KAEP
Общо
К-во
1.00
Общо
Ед. Цена
€1,205.11
€1205
11
/
2356
99
лв
Тотал
€1,205.11
Допълнителни инструкции
За да разгледате тази поръчка във вашия профил
натиснете тук
натиснете тук
.
ВЪРНИ СЕ В ПОРЪЧКИ
Запишете се за нашият Бюлетин
Запишете се за нашият Бюлетин
Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.
[EMAIL]
Запиши се
Facebook
Twitter
Instagram
xtreme
xtreme
Ако имате въпроси свържете се с нас!
Ако имате въпроси свържете се с нас!
[EMAIL]
[EMAIL]
+359 886 177 222
+359 886 177 222
Информация
Информация
Доставка
Доставка
Условия
Условия
Рекламация
Рекламация
Контакти
Контакти
За Нас
За Нас
Потребител
Потребител
Профил
Профил
История на Поръчките
История на Поръчките
Любими
Любими
GDPR
GDPR
Лични Данни
Лични Данни
Методи за Плащане
Методи за Плащане
Наложен Платеж
Кредитна/Дебитна Карта
Банков Превод
На изплащане ПБ Лични Финанси
Copyright © 2023
Xtreme.bg
Xtreme.bg
- Всички права запазени.
Онлайн магазин вървящ на
XCore
XCore...
|
NULL
|
|
7588
|
142
|
0
|
2026-04-13T16:07:40.331398+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096460331_m1.jpg...
|
Firefox
|
Резултати от Търсене — Personal
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Резултати от Търсене
Резултати от Търсене
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
0€ / 0 лв.
0€ / 0 лв.
Всички Категории
Всички Категории
red plus
Compares
0
Сравни
Wishlists
0
Любими
Резултати от Търсене
Резултати от Търсене
Начало
Начало
»
Резултати от Търсене
Резултати от Търсене
Хром
Стр.
1
от
19
Следваща страница
Последна страница
Записи
438
Сортирай
Цена, от Ниска към Висока Цена, от Ниска към Висока Цена, от Ниска към Висока
Цена, от Ниска към Висока
Страница
Отиди
BROTHER
BROTHER BP71GP20 photo paper A6 20BL 190g/qm for MFC-6490CW DCP-375CW 6890CDW
BROTHER BP71GP20 photo paper A6 20BL 190g/qm for MFC-6490CW DCP-375CW 6890CDW
BROTHER BP71GP20 photo paper A6 20BL 190g/qm for MFC-6490CW DCP-375CW 6890CDW
BROTHER BP71GP20 photo paper A6 20BL 190g/qm for MFC-6490CW DCP-375CW 6890CDW
€4
23
/
8
27
лв
Оценете Продукта
Ugreen
КАБЕЛ USB А / USB-C 3A,1М UGREEN - БЯЛ
КАБЕЛ USB А / USB-C 3A,1М UGREEN - БЯЛ
КАБЕЛ USB А / USB-C 3A,1М UGREEN - БЯЛ
КАБЕЛ USB А / USB-C 3A,1М UGREEN - БЯЛ
€4
25
/
8
31
лв
Оценете Продукта
Ugreen
КАБЕЛ USB А / USB-C 3A,1М UGREEN - ЧЕРЕН
КАБЕЛ USB А / USB-C 3A,1М UGREEN - ЧЕРЕН
КАБЕЛ USB А / USB-C 3A,1М UGREEN - ЧЕРЕН
КАБЕЛ USB А / USB-C 3A,1М UGREEN - ЧЕРЕН
€4
25
/
8
31
лв
Оценете Продукта
Ugreen
КАБЕЛ USB А / USB-C 3A,1М UGREEN - ПЛЕТЕН ЧЕРЕН
КАБЕЛ USB А / USB-C 3A,1М UGREEN - ПЛЕТЕН ЧЕРЕН
КАБЕЛ USB А / USB-C 3A,1М UGREEN - ПЛЕТЕН ЧЕРЕН
КАБЕЛ USB А / USB-C 3A,1М UGREEN - ПЛЕТЕН ЧЕРЕН
€4
79
/
9
37
лв
Оценете Продукта
LOGITECH
Мишка, Logitech B100 Optical Mouse for Business Black
Мишка, Logitech B100 Optical Mouse for Business Black
Мишка, Logitech B100 Optical Mouse for Business Black
Мишка, Logitech B100 Optical Mouse for Business Black
€5
40
/
10
56
лв
Оценете Продукта
CANYON
CANYON cable AC18SC A-C 18W 1.2m Black
CANYON cable AC18SC A-C 18W 1.2m Black
CANYON cable AC18SC A-C 18W 1.2m Black
CANYON cable AC18SC A-C 18W 1.2m Black
€5
46
/
10
68
лв
Оценете Продукта
CANYON
CANYON cable AC18SC A-C 18W 1.2m White
CANYON cable AC18SC A-C 18W 1.2m White
CANYON cable AC18SC A-C 18W 1.2m White
CANYON cable AC18SC A-C 18W 1.2m White
€5
46
/
10
68
лв
Оценете Продукта
CANYON
CANYON cable CC100AB C-C 100W Braided 1.2m White
CANYON cable CC100AB C-C 100W Braided 1.2m White
CANYON cable CC100AB C-C 100W Braided 1.2m White
CANYON cable CC100AB C-C 100W Braided 1.2m White
€6
70
/
13
10
лв
Оценете Продукта
CANYON
CANYON cable CC100SC C-C 100W 2m White
CANYON cable CC100SC C-C 100W 2m White
CANYON cable CC100SC C-C 100W 2m White
CANYON cable CC100SC C-C 100W 2m White
€7
92
/
15
49
лв
Оценете Продукта
HP_INC.
HP Matte FSC Photo Paper 4x6 25 sheets
HP Matte FSC Photo Paper 4x6 25 sheets
HP Matte FSC Photo Paper 4x6 25 sheets
HP Matte FSC Photo Paper 4x6 25 sheets
€8
44
/
16
51
лв
Оценете Продукта
BROTHER
BROTHER TZE231S2 black/white 12mm 4m retail pack
BROTHER TZE231S2 black/white 12mm 4m retail pack
BROTHER TZE231S2 black/white 12mm 4m retail pack
BROTHER TZE231S2 black/white 12mm 4m retail pack
€9
22
/
18
03
лв
Оценете Продукта
BROTHER
BROTHER TZe-131S tape cassette 12mm
BROTHER TZe-131S tape cassette 12mm
BROTHER TZe-131S tape cassette 12mm
BROTHER TZe-131S tape cassette 12mm
€9
22
/
18
03
лв
Оценете Продукта
CANYON
CANYON cable CC60SC10 C-C 60W 1m Silicon Dark blue
CANYON cable CC60SC10 C-C 60W 1m Silicon Dark blue
CANYON cable CC60SC10 C-C 60W 1m Silicon Dark blue
CANYON cable CC60SC10 C-C 60W 1m Silicon Dark blue
€9
76
/
19
09
лв
Оценете Продукта
CANYON
CANYON cable CC60SC10 C-C 60W 1m Silicon Pink Sand
CANYON cable CC60SC10 C-C 60W 1m Silicon Pink Sand
CANYON cable CC60SC10 C-C 60W 1m Silicon Pink Sand
CANYON cable CC60SC10 C-C 60W 1m Silicon Pink Sand
€9
76
/
19
09
лв
Покажи Статистика
5
Оценете Продукта
CANYON
CANYON cable CC60SC10 C-C 60W 1m Silicon Black
CANYON cable CC60SC10 C-C 60W 1m Silicon Black
CANYON cable CC60SC10 C-C 60W 1m Silicon Black
CANYON cable CC60SC10 C-C 60W 1m Silicon Black
€9
76
/
19
09
лв
Оценете Продукта
CANYON
CANYON cable CC60SC10 C-C 60W 1m Silicon White
CANYON cable CC60SC10 C-C 60W 1m Silicon White
CANYON cable CC60SC10 C-C 60W 1m Silicon White
CANYON cable CC60SC10 C-C 60W 1m Silicon White
€9
76
/
19
09
лв
Оценете Продукта
LOGITECH
Мишка, Logitech Wireless Mouse M170 Grey
Мишка, Logitech Wireless Mouse M170 Grey
Мишка, Logitech Wireless Mouse M170 Grey
Мишка, Logitech Wireless Mouse M170 Grey
€9
99
/
19
54
лв
Оценете Продукта
LENOVO
LENOVO Smart Charging Station 2
LENOVO Smart Charging Station 2
LENOVO Smart Charging Station 2
LENOVO Smart Charging Station 2
€10
29
/
20
13
лв
Оценете Продукта
BROTHER
BROTHER P-Touch 12mm light grey/gold ribbon tape
BROTHER P-Touch 12mm light grey/gold ribbon tape
BROTHER P-Touch 12mm light grey/gold ribbon tape
BROTHER P-Touch 12mm light grey/gold ribbon tape
€10
30
/
20
15
лв
Оценете Продукта
LOGITECH
Мишка, Logitech Wireless Mouse M171 Black
Мишка, Logitech Wireless Mouse M171 Black
Мишка, Logitech Wireless Mouse M171 Black
Мишка, Logitech Wireless Mouse M171 Black
€10
98
/
21
48
лв
Оценете Продукта
LOGITECH
Мишка, Logitech Wireless Mouse M171 Blue
Мишка, Logitech Wireless Mouse M171 Blue
Мишка, Logitech Wireless Mouse M171 Blue
Мишка, Logitech Wireless Mouse M171 Blue
€10
98
/
21
48
лв
Оценете Продукта
LOGITECH
Мишка, Logitech Wireless Mouse M171 Red
Мишка, Logitech Wireless Mouse M171 Red
Мишка, Logitech Wireless Mouse M171 Red
Мишка, Logitech Wireless Mouse M171 Red
€10
98
/
21
48
лв
Оценете Продукта
PHILIPS
PHILIPS Торба за прах за еднократна употреба Philips disposable dust
PHILIPS Торба за прах за еднократна употреба Philips disposable dust
PHILIPS Торба за прах за еднократна употреба Philips disposable dust
PHILIPS Торба за прах за еднократна употреба Philips disposable dust
€11
18
/
21
87
лв
Оценете Продукта
EPSON
EPSON Premium semi gloss photo paper inkjet 251g/m2 100x150mm 50 sheets pack
EPSON Premium semi gloss photo paper inkjet 251g/m2 100x150mm 50 sheets pack
EPSON Premium semi gloss photo paper inkjet 251g/m2 100x150mm 50 sheets pack
EPSON Premium semi gloss photo paper inkjet 251g/m2 100x150mm 50 sheets pack
€11
27
/
22
04
лв
Оценете Продукта
Стр.
1
от
19
Следваща страница
Последна страница
Записи
438
Страница
Отиди
Запишете се за нашият Бюлетин
Запишете се за нашият Бюлетин
Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.
[EMAIL]
Запиши се
Facebook
Twitter
Instagram
xtreme
xtreme
Ако имате въпроси свържете се с нас!
Ако имате въпроси свържете се с нас!
[EMAIL]
[EMAIL]
+359 886 177 222
+359 886 177 222
Информация
Информация
Доставка
Доставка
Условия
Условия
Рекламация
Рекламация
Контакти
Контакти
За Нас
За Нас
Потребител
Потребител
Профил
Профил
История на Поръчките
История на Поръчките
Любими
Любими
GDPR
GDPR
Лични Данни
Лични Данни
Методи за Плащане...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Inbox - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Shameless • HBO Max","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Shameless • HBO Max","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Mute tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Machines - Tailscale","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Machines - Tailscale","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe Dashboard","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe Dashboard","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Резултати от Търсене","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Резултати от Търсене","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"google maps timeline export - Google Search","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"google maps timeline export - Google Search","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New Tab","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"0886 177 222","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0886 177 222","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"info@xtreme.bg","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"info@xtreme.bg","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"facebook","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"twitter","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"instagram","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"xtreme","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"НАЧАЛО","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"НАЧАЛО","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"МАГАЗИН","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"МАГАЗИН","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"БЛОГ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"БЛОГ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"КОНТАКТИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"КОНТАКТИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"РЕКЛАМАЦИИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"РЕКЛАМАЦИИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Lukáš Koválik","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":" 0€ / 0 лв.","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0€ / 0 лв.","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Всички Категории","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Всички Категории","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"red plus","depth":11,"value":"red plus","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":true,"is_selected":false},{"role":"AXButton","text":"","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Compares","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Сравни","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Wishlists","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Любими","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Резултати от Търсене","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Резултати от Търсене","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Начало","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Начало","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"»","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Резултати от Търсене","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Резултати от Търсене","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Хром","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Стр.","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"от","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"19","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Следваща страница","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Последна страница","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Записи","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"438","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Сортирай","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Цена, от Ниска към Висока Цена, от Ниска към Висока Цена, от Ниска към Висока","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Цена, от Ниска към Висока","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Страница","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Отиди","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"BROTHER","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"BROTHER BP71GP20 photo paper A6 20BL 190g/qm for MFC-6490CW DCP-375CW 6890CDW","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"BROTHER BP71GP20 photo paper A6 20BL 190g/qm for MFC-6490CW DCP-375CW 6890CDW","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"BROTHER BP71GP20 photo paper A6 20BL 190g/qm for MFC-6490CW DCP-375CW 6890CDW","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"BROTHER BP71GP20 photo paper A6 20BL 190g/qm for MFC-6490CW DCP-375CW 6890CDW","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€4","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"23","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"8","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"27","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Ugreen","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"КАБЕЛ USB А / USB-C 3A,1М UGREEN - БЯЛ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"КАБЕЛ USB А / USB-C 3A,1М UGREEN - БЯЛ","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"КАБЕЛ USB А / USB-C 3A,1М UGREEN - БЯЛ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"КАБЕЛ USB А / USB-C 3A,1М UGREEN - БЯЛ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€4","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"25","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"8","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"31","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Ugreen","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"КАБЕЛ USB А / USB-C 3A,1М UGREEN - ЧЕРЕН","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"КАБЕЛ USB А / USB-C 3A,1М UGREEN - ЧЕРЕН","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"КАБЕЛ USB А / USB-C 3A,1М UGREEN - ЧЕРЕН","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"КАБЕЛ USB А / USB-C 3A,1М UGREEN - ЧЕРЕН","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€4","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"25","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"8","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"31","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Ugreen","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"КАБЕЛ USB А / USB-C 3A,1М UGREEN - ПЛЕТЕН ЧЕРЕН","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"КАБЕЛ USB А / USB-C 3A,1М UGREEN - ПЛЕТЕН ЧЕРЕН","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"КАБЕЛ USB А / USB-C 3A,1М UGREEN - ПЛЕТЕН ЧЕРЕН","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"КАБЕЛ USB А / USB-C 3A,1М UGREEN - ПЛЕТЕН ЧЕРЕН","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€4","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"79","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"9","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"37","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"LOGITECH","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Мишка, Logitech B100 Optical Mouse for Business Black","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Мишка, Logitech B100 Optical Mouse for Business Black","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Мишка, Logitech B100 Optical Mouse for Business Black","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Мишка, Logitech B100 Optical Mouse for Business Black","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€5","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"40","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"10","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"56","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"CANYON","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"CANYON cable AC18SC A-C 18W 1.2m Black","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"CANYON cable AC18SC A-C 18W 1.2m Black","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"CANYON cable AC18SC A-C 18W 1.2m Black","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"CANYON cable AC18SC A-C 18W 1.2m Black","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€5","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"46","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"10","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"68","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"CANYON","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"CANYON cable AC18SC A-C 18W 1.2m White","depth":10,"bounds":{"left":0.0,"top":0.08222222,"width":0.1736111,"height":0.02},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"CANYON cable AC18SC A-C 18W 1.2m White","depth":9,"bounds":{"left":0.0,"top":0.12,"width":0.20069444,"height":0.064444445},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"CANYON cable AC18SC A-C 18W 1.2m White","depth":10,"bounds":{"left":0.0,"top":0.12,"width":0.19513889,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"CANYON cable AC18SC A-C 18W 1.2m White","depth":11,"bounds":{"left":0.0,"top":0.12,"width":0.19513889,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€5","depth":10,"bounds":{"left":0.023611112,"top":0.20222223,"width":0.016666668,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"46","depth":11,"bounds":{"left":0.04027778,"top":0.20333333,"width":0.013194445,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"bounds":{"left":0.056944445,"top":0.21222222,"width":0.0034722222,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"10","depth":10,"bounds":{"left":0.060416665,"top":0.20222223,"width":0.020833334,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"68","depth":11,"bounds":{"left":0.08125,"top":0.20333333,"width":0.0125,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"bounds":{"left":0.09375,"top":0.20222223,"width":0.020833334,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"CANYON","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"CANYON cable CC100AB C-C 100W Braided 1.2m White","depth":10,"bounds":{"left":0.15694444,"top":0.08222222,"width":0.1736111,"height":0.02},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"CANYON cable CC100AB C-C 100W Braided 1.2m White","depth":9,"bounds":{"left":0.14375,"top":0.12,"width":0.2,"height":0.064444445},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"CANYON cable CC100AB C-C 100W Braided 1.2m White","depth":10,"bounds":{"left":0.14375,"top":0.12,"width":0.18958333,"height":0.04222222},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"CANYON cable CC100AB C-C 100W Braided 1.2m White","depth":11,"bounds":{"left":0.14375,"top":0.12,"width":0.18958333,"height":0.04222222},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€6","depth":10,"bounds":{"left":0.2534722,"top":0.20222223,"width":0.016666668,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"70","depth":11,"bounds":{"left":0.2701389,"top":0.20333333,"width":0.0125,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"bounds":{"left":0.28680557,"top":0.21222222,"width":0.0034722222,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"13","depth":10,"bounds":{"left":0.29027778,"top":0.20222223,"width":0.02013889,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"10","depth":11,"bounds":{"left":0.31041667,"top":0.20333333,"width":0.013194445,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"bounds":{"left":0.3236111,"top":0.20222223,"width":0.02013889,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"CANYON","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"CANYON cable CC100SC C-C 100W 2m White","depth":10,"bounds":{"left":0.3861111,"top":0.08222222,"width":0.1736111,"height":0.02},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"CANYON cable CC100SC C-C 100W 2m White","depth":9,"bounds":{"left":0.37291667,"top":0.12,"width":0.20069444,"height":0.064444445},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"CANYON cable CC100SC C-C 100W 2m White","depth":10,"bounds":{"left":0.37291667,"top":0.12,"width":0.19791667,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"CANYON cable CC100SC C-C 100W 2m White","depth":11,"bounds":{"left":0.37291667,"top":0.12,"width":0.19791667,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€7","depth":10,"bounds":{"left":0.4826389,"top":0.20222223,"width":0.016666668,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"92","depth":11,"bounds":{"left":0.49930555,"top":0.20333333,"width":0.013194445,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"bounds":{"left":0.5159722,"top":0.21222222,"width":0.0034722222,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"15","depth":10,"bounds":{"left":0.51944447,"top":0.20222223,"width":0.020833334,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"49","depth":11,"bounds":{"left":0.5402778,"top":0.20333333,"width":0.0125,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"bounds":{"left":0.55277777,"top":0.20222223,"width":0.020833334,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"HP_INC.","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"HP Matte FSC Photo Paper 4x6 25 sheets","depth":10,"bounds":{"left":0.6159722,"top":0.08222222,"width":0.1736111,"height":0.02},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"HP Matte FSC Photo Paper 4x6 25 sheets","depth":9,"bounds":{"left":0.6027778,"top":0.12,"width":0.2,"height":0.064444445},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"HP Matte FSC Photo Paper 4x6 25 sheets","depth":10,"bounds":{"left":0.6027778,"top":0.12,"width":0.18055555,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"HP Matte FSC Photo Paper 4x6 25 sheets","depth":11,"bounds":{"left":0.6027778,"top":0.12,"width":0.18055555,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€8","depth":10,"bounds":{"left":0.7118056,"top":0.20222223,"width":0.017361112,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"44","depth":11,"bounds":{"left":0.7291667,"top":0.20333333,"width":0.0125,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"bounds":{"left":0.7451389,"top":0.21222222,"width":0.0034722222,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"16","depth":10,"bounds":{"left":0.7486111,"top":0.20222223,"width":0.020833334,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"51","depth":11,"bounds":{"left":0.76944447,"top":0.20333333,"width":0.0125,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"bounds":{"left":0.78194445,"top":0.20222223,"width":0.020833334,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"BROTHER","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"BROTHER TZE231S2 black/white 12mm 4m retail pack","depth":10,"bounds":{"left":0.8451389,"top":0.08222222,"width":0.1548611,"height":0.02},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"BROTHER TZE231S2 black/white 12mm 4m retail pack","depth":9,"bounds":{"left":0.83194447,"top":0.12,"width":0.16805553,"height":0.064444445},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"BROTHER TZE231S2 black/white 12mm 4m retail pack","depth":10,"bounds":{"left":0.83194447,"top":0.12,"width":0.16805553,"height":0.04222222},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"BROTHER TZE231S2 black/white 12mm 4m retail pack","depth":11,"bounds":{"left":0.83194447,"top":0.12,"width":0.16805553,"height":0.04222222},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€9","depth":10,"bounds":{"left":0.94166666,"top":0.20222223,"width":0.016666668,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"22","depth":11,"bounds":{"left":0.9583333,"top":0.20333333,"width":0.0125,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"bounds":{"left":0.975,"top":0.21222222,"width":0.0034722222,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18","depth":10,"bounds":{"left":0.97847223,"top":0.20222223,"width":0.020833334,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"03","depth":11,"bounds":{"left":0.99930555,"top":0.20333333,"width":0.0006944537,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"bounds":{"left":1.0,"top":0.20222223,"width":-0.011805534,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"BROTHER","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"BROTHER TZe-131S tape cassette 12mm","depth":10,"bounds":{"left":1.0,"top":0.08222222,"width":-0.07500005,"height":0.02},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"BROTHER TZe-131S tape cassette 12mm","depth":9,"bounds":{"left":1.0,"top":0.12,"width":-0.061111093,"height":0.064444445},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"BROTHER TZe-131S tape cassette 12mm","depth":10,"bounds":{"left":1.0,"top":0.12,"width":-0.061111093,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"BROTHER TZe-131S tape cassette 12mm","depth":11,"bounds":{"left":1.0,"top":0.12,"width":-0.061111093,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€9","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"22","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"03","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"CANYON","depth":12,"bounds":{"left":0.0,"top":0.28333333,"width":0.034027778,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"CANYON cable CC60SC10 C-C 60W 1m Silicon Dark blue","depth":10,"bounds":{"left":0.0,"top":0.5233333,"width":0.1736111,"height":0.02},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"CANYON cable CC60SC10 C-C 60W 1m Silicon Dark blue","depth":9,"bounds":{"left":0.0,"top":0.5611111,"width":0.20069444,"height":0.064444445},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"CANYON cable CC60SC10 C-C 60W 1m Silicon Dark blue","depth":10,"bounds":{"left":0.0,"top":0.5611111,"width":0.1701389,"height":0.04222222},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"CANYON cable CC60SC10 C-C 60W 1m Silicon Dark blue","depth":11,"bounds":{"left":0.0,"top":0.5611111,"width":0.1701389,"height":0.04222222},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€9","depth":10,"bounds":{"left":0.023611112,"top":0.6433333,"width":0.016666668,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"76","depth":11,"bounds":{"left":0.04027778,"top":0.64444447,"width":0.013194445,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"bounds":{"left":0.056944445,"top":0.6533333,"width":0.0034722222,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"19","depth":10,"bounds":{"left":0.060416665,"top":0.6433333,"width":0.020833334,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"09","depth":11,"bounds":{"left":0.08125,"top":0.64444447,"width":0.0125,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"bounds":{"left":0.09375,"top":0.6433333,"width":0.020833334,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"bounds":{"left":0.09097222,"top":0.26555556,"width":0.030555556,"height":0.037777778},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"CANYON","depth":12,"bounds":{"left":0.14930555,"top":0.28333333,"width":0.033333335,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"CANYON cable CC60SC10 C-C 60W 1m Silicon Pink Sand","depth":10,"bounds":{"left":0.15694444,"top":0.5233333,"width":0.1736111,"height":0.02},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"CANYON cable CC60SC10 C-C 60W 1m Silicon Pink Sand","depth":9,"bounds":{"left":0.14375,"top":0.5611111,"width":0.2,"height":0.064444445},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"CANYON cable CC60SC10 C-C 60W 1m Silicon Pink Sand","depth":10,"bounds":{"left":0.14375,"top":0.5611111,"width":0.1701389,"height":0.04222222},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"CANYON cable CC60SC10 C-C 60W 1m Silicon Pink Sand","depth":11,"bounds":{"left":0.14375,"top":0.5611111,"width":0.1701389,"height":0.04222222},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€9","depth":10,"bounds":{"left":0.2534722,"top":0.6433333,"width":0.016666668,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"76","depth":11,"bounds":{"left":0.2701389,"top":0.64444447,"width":0.0125,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"bounds":{"left":0.28680557,"top":0.6533333,"width":0.0034722222,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"19","depth":10,"bounds":{"left":0.29027778,"top":0.6433333,"width":0.02013889,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"09","depth":11,"bounds":{"left":0.31041667,"top":0.64444447,"width":0.013194445,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"bounds":{"left":0.3236111,"top":0.6433333,"width":0.02013889,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Покажи Статистика","depth":9,"bounds":{"left":0.28958333,"top":0.26555556,"width":0.030555556,"height":0.037777778},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"5","depth":11,"bounds":{"left":0.30972221,"top":0.27666667,"width":0.0069444445,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"bounds":{"left":0.3201389,"top":0.26555556,"width":0.030555556,"height":0.037777778},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"CANYON","depth":12,"bounds":{"left":0.3784722,"top":0.28333333,"width":0.034027778,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"CANYON cable CC60SC10 C-C 60W 1m Silicon Black","depth":10,"bounds":{"left":0.3861111,"top":0.5233333,"width":0.1736111,"height":0.02},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"CANYON cable CC60SC10 C-C 60W 1m Silicon Black","depth":9,"bounds":{"left":0.37291667,"top":0.5611111,"width":0.20069444,"height":0.064444445},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"CANYON cable CC60SC10 C-C 60W 1m Silicon Black","depth":10,"bounds":{"left":0.37291667,"top":0.5611111,"width":0.1701389,"height":0.04222222},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"CANYON cable CC60SC10 C-C 60W 1m Silicon Black","depth":11,"bounds":{"left":0.37291667,"top":0.5611111,"width":0.1701389,"height":0.04222222},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€9","depth":10,"bounds":{"left":0.4826389,"top":0.6433333,"width":0.016666668,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"76","depth":11,"bounds":{"left":0.49930555,"top":0.64444447,"width":0.013194445,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"bounds":{"left":0.5159722,"top":0.6533333,"width":0.0034722222,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"19","depth":10,"bounds":{"left":0.51944447,"top":0.6433333,"width":0.020833334,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"09","depth":11,"bounds":{"left":0.5402778,"top":0.64444447,"width":0.0125,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"bounds":{"left":0.55277777,"top":0.6433333,"width":0.020833334,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"bounds":{"left":0.55,"top":0.26555556,"width":0.030555556,"height":0.037777778},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"CANYON","depth":12,"bounds":{"left":0.60833335,"top":0.28333333,"width":0.033333335,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"CANYON cable CC60SC10 C-C 60W 1m Silicon White","depth":10,"bounds":{"left":0.6159722,"top":0.5233333,"width":0.1736111,"height":0.02},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"CANYON cable CC60SC10 C-C 60W 1m Silicon White","depth":9,"bounds":{"left":0.6027778,"top":0.5611111,"width":0.2,"height":0.064444445},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"CANYON cable CC60SC10 C-C 60W 1m Silicon White","depth":10,"bounds":{"left":0.6027778,"top":0.5611111,"width":0.1701389,"height":0.04222222},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"CANYON cable CC60SC10 C-C 60W 1m Silicon White","depth":11,"bounds":{"left":0.6027778,"top":0.5611111,"width":0.1701389,"height":0.04222222},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€9","depth":10,"bounds":{"left":0.7118056,"top":0.6433333,"width":0.017361112,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"76","depth":11,"bounds":{"left":0.7291667,"top":0.64444447,"width":0.0125,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"bounds":{"left":0.7451389,"top":0.6533333,"width":0.0034722222,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"19","depth":10,"bounds":{"left":0.7486111,"top":0.6433333,"width":0.020833334,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"09","depth":11,"bounds":{"left":0.76944447,"top":0.64444447,"width":0.0125,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"bounds":{"left":0.78194445,"top":0.6433333,"width":0.020833334,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"bounds":{"left":0.77916664,"top":0.26555556,"width":0.030555556,"height":0.037777778},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"LOGITECH","depth":12,"bounds":{"left":0.8375,"top":0.28333333,"width":0.039583333,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Мишка, Logitech Wireless Mouse M170 Grey","depth":10,"bounds":{"left":0.8451389,"top":0.5233333,"width":0.1548611,"height":0.02},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Мишка, Logitech Wireless Mouse M170 Grey","depth":9,"bounds":{"left":0.83194447,"top":0.5611111,"width":0.16805553,"height":0.064444445},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Мишка, Logitech Wireless Mouse M170 Grey","depth":10,"bounds":{"left":0.83194447,"top":0.5611111,"width":0.16805553,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Мишка, Logitech Wireless Mouse M170 Grey","depth":11,"bounds":{"left":0.83194447,"top":0.5611111,"width":0.16805553,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€9","depth":10,"bounds":{"left":0.94166666,"top":0.6433333,"width":0.016666668,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"99","depth":11,"bounds":{"left":0.9583333,"top":0.64444447,"width":0.0125,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"bounds":{"left":0.975,"top":0.6533333,"width":0.0034722222,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"19","depth":10,"bounds":{"left":0.97847223,"top":0.6433333,"width":0.020833334,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"54","depth":11,"bounds":{"left":0.99930555,"top":0.64444447,"width":0.0006944537,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"bounds":{"left":1.0,"top":0.6433333,"width":-0.011805534,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"bounds":{"left":1.0,"top":0.26555556,"width":-0.008333325,"height":0.037777778},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"LENOVO","depth":12,"bounds":{"left":1.0,"top":0.28333333,"width":-0.06666672,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"LENOVO Smart Charging Station 2","depth":10,"bounds":{"left":1.0,"top":0.5233333,"width":-0.07500005,"height":0.02},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"LENOVO Smart Charging Station 2","depth":9,"bounds":{"left":1.0,"top":0.5611111,"width":-0.061111093,"height":0.064444445},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"LENOVO Smart Charging Station 2","depth":10,"bounds":{"left":1.0,"top":0.5611111,"width":-0.061111093,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"LENOVO Smart Charging Station 2","depth":11,"bounds":{"left":1.0,"top":0.5611111,"width":-0.061111093,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€10","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"29","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"20","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"13","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"BROTHER","depth":12,"bounds":{"left":0.0,"top":0.72444445,"width":0.0375,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"BROTHER P-Touch 12mm light grey/gold ribbon tape","depth":10,"bounds":{"left":0.0,"top":0.96444446,"width":0.1736111,"height":0.02},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"BROTHER P-Touch 12mm light grey/gold ribbon tape","depth":9,"bounds":{"left":0.0,"top":1.0,"width":0.20069444,"height":-0.0022221804},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"BROTHER P-Touch 12mm light grey/gold ribbon tape","depth":10,"bounds":{"left":0.0,"top":1.0,"width":0.17708333,"height":-0.0022221804},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"BROTHER P-Touch 12mm light grey/gold ribbon tape","depth":11,"bounds":{"left":0.0,"top":1.0,"width":0.17708333,"height":-0.0022221804},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€10","depth":10,"bounds":{"left":0.015277778,"top":1.0,"width":0.025,"height":-0.0844444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"30","depth":11,"bounds":{"left":0.04027778,"top":1.0,"width":0.013194445,"height":-0.08555555},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"bounds":{"left":0.056944445,"top":1.0,"width":0.0034722222,"height":-0.094444394},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"20","depth":10,"bounds":{"left":0.060416665,"top":1.0,"width":0.020833334,"height":-0.0844444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"15","depth":11,"bounds":{"left":0.08125,"top":1.0,"width":0.0125,"height":-0.08555555},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"bounds":{"left":0.09375,"top":1.0,"width":0.020833334,"height":-0.0844444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"bounds":{"left":0.09097222,"top":0.70666665,"width":0.030555556,"height":0.037777778},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"LOGITECH","depth":12,"bounds":{"left":0.14930555,"top":0.72444445,"width":0.039583333,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Мишка, Logitech Wireless Mouse M171 Black","depth":10,"bounds":{"left":0.15694444,"top":0.96444446,"width":0.1736111,"height":0.02},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Мишка, Logitech Wireless Mouse M171 Black","depth":9,"bounds":{"left":0.14375,"top":1.0,"width":0.2,"height":-0.0022221804},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Мишка, Logitech Wireless Mouse M171 Black","depth":10,"bounds":{"left":0.14375,"top":1.0,"width":0.17430556,"height":-0.0022221804},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Мишка, Logitech Wireless Mouse M171 Black","depth":11,"bounds":{"left":0.14375,"top":1.0,"width":0.17430556,"height":-0.0022221804},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€10","depth":10,"bounds":{"left":0.24444444,"top":1.0,"width":0.025694445,"height":-0.0844444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"98","depth":11,"bounds":{"left":0.2701389,"top":1.0,"width":0.0125,"height":-0.08555555},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"bounds":{"left":0.28680557,"top":1.0,"width":0.0034722222,"height":-0.094444394},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21","depth":10,"bounds":{"left":0.29027778,"top":1.0,"width":0.02013889,"height":-0.0844444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"48","depth":11,"bounds":{"left":0.31041667,"top":1.0,"width":0.013194445,"height":-0.08555555},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"bounds":{"left":0.3236111,"top":1.0,"width":0.02013889,"height":-0.0844444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"bounds":{"left":0.3201389,"top":0.70666665,"width":0.030555556,"height":0.037777778},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"LOGITECH","depth":12,"bounds":{"left":0.3784722,"top":0.72444445,"width":0.039583333,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Мишка, Logitech Wireless Mouse M171 Blue","depth":10,"bounds":{"left":0.3861111,"top":0.96444446,"width":0.1736111,"height":0.02},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Мишка, Logitech Wireless Mouse M171 Blue","depth":9,"bounds":{"left":0.37291667,"top":1.0,"width":0.20069444,"height":-0.0022221804},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Мишка, Logitech Wireless Mouse M171 Blue","depth":10,"bounds":{"left":0.37291667,"top":1.0,"width":0.19652778,"height":-0.0022221804},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Мишка, Logitech Wireless Mouse M171 Blue","depth":11,"bounds":{"left":0.37291667,"top":1.0,"width":0.19652778,"height":-0.0022221804},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€10","depth":10,"bounds":{"left":0.47430557,"top":1.0,"width":0.025,"height":-0.0844444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"98","depth":11,"bounds":{"left":0.49930555,"top":1.0,"width":0.013194445,"height":-0.08555555},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"bounds":{"left":0.5159722,"top":1.0,"width":0.0034722222,"height":-0.094444394},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21","depth":10,"bounds":{"left":0.51944447,"top":1.0,"width":0.020833334,"height":-0.0844444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"48","depth":11,"bounds":{"left":0.5402778,"top":1.0,"width":0.0125,"height":-0.08555555},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"bounds":{"left":0.55277777,"top":1.0,"width":0.020833334,"height":-0.0844444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"bounds":{"left":0.55,"top":0.70666665,"width":0.030555556,"height":0.037777778},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"LOGITECH","depth":12,"bounds":{"left":0.60833335,"top":0.72444445,"width":0.039583333,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Мишка, Logitech Wireless Mouse M171 Red","depth":10,"bounds":{"left":0.6159722,"top":0.96444446,"width":0.1736111,"height":0.02},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Мишка, Logitech Wireless Mouse M171 Red","depth":9,"bounds":{"left":0.6027778,"top":1.0,"width":0.2,"height":-0.0022221804},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Мишка, Logitech Wireless Mouse M171 Red","depth":10,"bounds":{"left":0.6027778,"top":1.0,"width":0.19305556,"height":-0.0022221804},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Мишка, Logitech Wireless Mouse M171 Red","depth":11,"bounds":{"left":0.6027778,"top":1.0,"width":0.19305556,"height":-0.0022221804},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€10","depth":10,"bounds":{"left":0.7034722,"top":1.0,"width":0.025694445,"height":-0.0844444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"98","depth":11,"bounds":{"left":0.7291667,"top":1.0,"width":0.0125,"height":-0.08555555},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"bounds":{"left":0.7451389,"top":1.0,"width":0.0034722222,"height":-0.094444394},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21","depth":10,"bounds":{"left":0.7486111,"top":1.0,"width":0.020833334,"height":-0.0844444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"48","depth":11,"bounds":{"left":0.76944447,"top":1.0,"width":0.0125,"height":-0.08555555},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"bounds":{"left":0.78194445,"top":1.0,"width":0.020833334,"height":-0.0844444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"bounds":{"left":0.77916664,"top":0.70666665,"width":0.030555556,"height":0.037777778},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"PHILIPS","depth":12,"bounds":{"left":0.8375,"top":0.72444445,"width":0.03125,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"PHILIPS Торба за прах за еднократна употреба Philips disposable dust","depth":10,"bounds":{"left":0.8451389,"top":0.96444446,"width":0.1548611,"height":0.02},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"PHILIPS Торба за прах за еднократна употреба Philips disposable dust","depth":9,"bounds":{"left":0.83194447,"top":1.0,"width":0.16805553,"height":-0.0022221804},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"PHILIPS Торба за прах за еднократна употреба Philips disposable dust","depth":10,"bounds":{"left":0.83194447,"top":1.0,"width":0.16805553,"height":-0.0022221804},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"PHILIPS Торба за прах за еднократна употреба Philips disposable dust","depth":11,"bounds":{"left":0.83194447,"top":1.0,"width":0.16805553,"height":-0.0022221804},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€11","depth":10,"bounds":{"left":0.93333334,"top":1.0,"width":0.025,"height":-0.0844444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18","depth":11,"bounds":{"left":0.9583333,"top":1.0,"width":0.0125,"height":-0.08555555},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"bounds":{"left":0.975,"top":1.0,"width":0.0034722222,"height":-0.094444394},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21","depth":10,"bounds":{"left":0.97847223,"top":1.0,"width":0.020833334,"height":-0.0844444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"87","depth":11,"bounds":{"left":0.99930555,"top":1.0,"width":0.0006944537,"height":-0.08555555},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"bounds":{"left":1.0,"top":1.0,"width":-0.011805534,"height":-0.0844444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"bounds":{"left":1.0,"top":0.70666665,"width":-0.008333325,"height":0.037777778},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"EPSON","depth":12,"bounds":{"left":1.0,"top":0.72444445,"width":-0.06666672,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"EPSON Premium semi gloss photo paper inkjet 251g/m2 100x150mm 50 sheets pack","depth":10,"bounds":{"left":1.0,"top":0.96444446,"width":-0.07500005,"height":0.02},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"EPSON Premium semi gloss photo paper inkjet 251g/m2 100x150mm 50 sheets pack","depth":9,"bounds":{"left":1.0,"top":1.0,"width":-0.061111093,"height":-0.0022221804},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"EPSON Premium semi gloss photo paper inkjet 251g/m2 100x150mm 50 sheets pack","depth":10,"bounds":{"left":1.0,"top":1.0,"width":-0.061111093,"height":-0.0022221804},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"EPSON Premium semi gloss photo paper inkjet 251g/m2 100x150mm 50 sheets pack","depth":11,"bounds":{"left":1.0,"top":1.0,"width":-0.061111093,"height":-0.0022221804},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€11","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"27","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"22","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"04","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Стр.","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"от","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"19","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Следваща страница","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Последна страница","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Записи","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"438","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Страница","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Отиди","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Запишете се за нашият Бюлетин","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Запишете се за нашият Бюлетин","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"kovaliklukas@gmail.com","depth":8,"value":"kovaliklukas@gmail.com","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Запиши се","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Facebook","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Twitter","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Instagram","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"xtreme","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"xtreme","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Ако имате въпроси свържете се с нас!","depth":10,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ако имате въпроси свържете се с нас!","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"info@xtreme.bg","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"info@xtreme.bg","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"+359 886 177 222","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"+359 886 177 222","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Информация","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Информация","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Доставка","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Доставка","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Условия","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Условия","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Рекламация","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Рекламация","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Контакти","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Контакти","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"За Нас","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"За Нас","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Потребител","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Потребител","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Профил","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Профил","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"История на Поръчките","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"История на Поръчките","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Любими","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Любими","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"GDPR","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"GDPR","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Лични Данни","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Лични Данни","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Методи за Плащане","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"}]...
|
1823228859822877873
|
-1359457857877338730
|
click
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Резултати от Търсене
Резултати от Търсене
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
0€ / 0 лв.
0€ / 0 лв.
Всички Категории
Всички Категории
red plus
Compares
0
Сравни
Wishlists
0
Любими
Резултати от Търсене
Резултати от Търсене
Начало
Начало
»
Резултати от Търсене
Резултати от Търсене
Хром
Стр.
1
от
19
Следваща страница
Последна страница
Записи
438
Сортирай
Цена, от Ниска към Висока Цена, от Ниска към Висока Цена, от Ниска към Висока
Цена, от Ниска към Висока
Страница
Отиди
BROTHER
BROTHER BP71GP20 photo paper A6 20BL 190g/qm for MFC-6490CW DCP-375CW 6890CDW
BROTHER BP71GP20 photo paper A6 20BL 190g/qm for MFC-6490CW DCP-375CW 6890CDW
BROTHER BP71GP20 photo paper A6 20BL 190g/qm for MFC-6490CW DCP-375CW 6890CDW
BROTHER BP71GP20 photo paper A6 20BL 190g/qm for MFC-6490CW DCP-375CW 6890CDW
€4
23
/
8
27
лв
Оценете Продукта
Ugreen
КАБЕЛ USB А / USB-C 3A,1М UGREEN - БЯЛ
КАБЕЛ USB А / USB-C 3A,1М UGREEN - БЯЛ
КАБЕЛ USB А / USB-C 3A,1М UGREEN - БЯЛ
КАБЕЛ USB А / USB-C 3A,1М UGREEN - БЯЛ
€4
25
/
8
31
лв
Оценете Продукта
Ugreen
КАБЕЛ USB А / USB-C 3A,1М UGREEN - ЧЕРЕН
КАБЕЛ USB А / USB-C 3A,1М UGREEN - ЧЕРЕН
КАБЕЛ USB А / USB-C 3A,1М UGREEN - ЧЕРЕН
КАБЕЛ USB А / USB-C 3A,1М UGREEN - ЧЕРЕН
€4
25
/
8
31
лв
Оценете Продукта
Ugreen
КАБЕЛ USB А / USB-C 3A,1М UGREEN - ПЛЕТЕН ЧЕРЕН
КАБЕЛ USB А / USB-C 3A,1М UGREEN - ПЛЕТЕН ЧЕРЕН
КАБЕЛ USB А / USB-C 3A,1М UGREEN - ПЛЕТЕН ЧЕРЕН
КАБЕЛ USB А / USB-C 3A,1М UGREEN - ПЛЕТЕН ЧЕРЕН
€4
79
/
9
37
лв
Оценете Продукта
LOGITECH
Мишка, Logitech B100 Optical Mouse for Business Black
Мишка, Logitech B100 Optical Mouse for Business Black
Мишка, Logitech B100 Optical Mouse for Business Black
Мишка, Logitech B100 Optical Mouse for Business Black
€5
40
/
10
56
лв
Оценете Продукта
CANYON
CANYON cable AC18SC A-C 18W 1.2m Black
CANYON cable AC18SC A-C 18W 1.2m Black
CANYON cable AC18SC A-C 18W 1.2m Black
CANYON cable AC18SC A-C 18W 1.2m Black
€5
46
/
10
68
лв
Оценете Продукта
CANYON
CANYON cable AC18SC A-C 18W 1.2m White
CANYON cable AC18SC A-C 18W 1.2m White
CANYON cable AC18SC A-C 18W 1.2m White
CANYON cable AC18SC A-C 18W 1.2m White
€5
46
/
10
68
лв
Оценете Продукта
CANYON
CANYON cable CC100AB C-C 100W Braided 1.2m White
CANYON cable CC100AB C-C 100W Braided 1.2m White
CANYON cable CC100AB C-C 100W Braided 1.2m White
CANYON cable CC100AB C-C 100W Braided 1.2m White
€6
70
/
13
10
лв
Оценете Продукта
CANYON
CANYON cable CC100SC C-C 100W 2m White
CANYON cable CC100SC C-C 100W 2m White
CANYON cable CC100SC C-C 100W 2m White
CANYON cable CC100SC C-C 100W 2m White
€7
92
/
15
49
лв
Оценете Продукта
HP_INC.
HP Matte FSC Photo Paper 4x6 25 sheets
HP Matte FSC Photo Paper 4x6 25 sheets
HP Matte FSC Photo Paper 4x6 25 sheets
HP Matte FSC Photo Paper 4x6 25 sheets
€8
44
/
16
51
лв
Оценете Продукта
BROTHER
BROTHER TZE231S2 black/white 12mm 4m retail pack
BROTHER TZE231S2 black/white 12mm 4m retail pack
BROTHER TZE231S2 black/white 12mm 4m retail pack
BROTHER TZE231S2 black/white 12mm 4m retail pack
€9
22
/
18
03
лв
Оценете Продукта
BROTHER
BROTHER TZe-131S tape cassette 12mm
BROTHER TZe-131S tape cassette 12mm
BROTHER TZe-131S tape cassette 12mm
BROTHER TZe-131S tape cassette 12mm
€9
22
/
18
03
лв
Оценете Продукта
CANYON
CANYON cable CC60SC10 C-C 60W 1m Silicon Dark blue
CANYON cable CC60SC10 C-C 60W 1m Silicon Dark blue
CANYON cable CC60SC10 C-C 60W 1m Silicon Dark blue
CANYON cable CC60SC10 C-C 60W 1m Silicon Dark blue
€9
76
/
19
09
лв
Оценете Продукта
CANYON
CANYON cable CC60SC10 C-C 60W 1m Silicon Pink Sand
CANYON cable CC60SC10 C-C 60W 1m Silicon Pink Sand
CANYON cable CC60SC10 C-C 60W 1m Silicon Pink Sand
CANYON cable CC60SC10 C-C 60W 1m Silicon Pink Sand
€9
76
/
19
09
лв
Покажи Статистика
5
Оценете Продукта
CANYON
CANYON cable CC60SC10 C-C 60W 1m Silicon Black
CANYON cable CC60SC10 C-C 60W 1m Silicon Black
CANYON cable CC60SC10 C-C 60W 1m Silicon Black
CANYON cable CC60SC10 C-C 60W 1m Silicon Black
€9
76
/
19
09
лв
Оценете Продукта
CANYON
CANYON cable CC60SC10 C-C 60W 1m Silicon White
CANYON cable CC60SC10 C-C 60W 1m Silicon White
CANYON cable CC60SC10 C-C 60W 1m Silicon White
CANYON cable CC60SC10 C-C 60W 1m Silicon White
€9
76
/
19
09
лв
Оценете Продукта
LOGITECH
Мишка, Logitech Wireless Mouse M170 Grey
Мишка, Logitech Wireless Mouse M170 Grey
Мишка, Logitech Wireless Mouse M170 Grey
Мишка, Logitech Wireless Mouse M170 Grey
€9
99
/
19
54
лв
Оценете Продукта
LENOVO
LENOVO Smart Charging Station 2
LENOVO Smart Charging Station 2
LENOVO Smart Charging Station 2
LENOVO Smart Charging Station 2
€10
29
/
20
13
лв
Оценете Продукта
BROTHER
BROTHER P-Touch 12mm light grey/gold ribbon tape
BROTHER P-Touch 12mm light grey/gold ribbon tape
BROTHER P-Touch 12mm light grey/gold ribbon tape
BROTHER P-Touch 12mm light grey/gold ribbon tape
€10
30
/
20
15
лв
Оценете Продукта
LOGITECH
Мишка, Logitech Wireless Mouse M171 Black
Мишка, Logitech Wireless Mouse M171 Black
Мишка, Logitech Wireless Mouse M171 Black
Мишка, Logitech Wireless Mouse M171 Black
€10
98
/
21
48
лв
Оценете Продукта
LOGITECH
Мишка, Logitech Wireless Mouse M171 Blue
Мишка, Logitech Wireless Mouse M171 Blue
Мишка, Logitech Wireless Mouse M171 Blue
Мишка, Logitech Wireless Mouse M171 Blue
€10
98
/
21
48
лв
Оценете Продукта
LOGITECH
Мишка, Logitech Wireless Mouse M171 Red
Мишка, Logitech Wireless Mouse M171 Red
Мишка, Logitech Wireless Mouse M171 Red
Мишка, Logitech Wireless Mouse M171 Red
€10
98
/
21
48
лв
Оценете Продукта
PHILIPS
PHILIPS Торба за прах за еднократна употреба Philips disposable dust
PHILIPS Торба за прах за еднократна употреба Philips disposable dust
PHILIPS Торба за прах за еднократна употреба Philips disposable dust
PHILIPS Торба за прах за еднократна употреба Philips disposable dust
€11
18
/
21
87
лв
Оценете Продукта
EPSON
EPSON Premium semi gloss photo paper inkjet 251g/m2 100x150mm 50 sheets pack
EPSON Premium semi gloss photo paper inkjet 251g/m2 100x150mm 50 sheets pack
EPSON Premium semi gloss photo paper inkjet 251g/m2 100x150mm 50 sheets pack
EPSON Premium semi gloss photo paper inkjet 251g/m2 100x150mm 50 sheets pack
€11
27
/
22
04
лв
Оценете Продукта
Стр.
1
от
19
Следваща страница
Последна страница
Записи
438
Страница
Отиди
Запишете се за нашият Бюлетин
Запишете се за нашият Бюлетин
Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.
[EMAIL]
Запиши се
Facebook
Twitter
Instagram
xtreme
xtreme
Ако имате въпроси свържете се с нас!
Ако имате въпроси свържете се с нас!
[EMAIL]
[EMAIL]
+359 886 177 222
+359 886 177 222
Информация
Информация
Доставка
Доставка
Условия
Условия
Рекламация
Рекламация
Контакти
Контакти
За Нас
За Нас
Потребител
Потребител
Профил
Профил
История на Поръчките
История на Поръчките
Любими
Любими
GDPR
GDPR
Лични Данни
Лични Данни
Методи за Плащане...
|
NULL
|
|
7589
|
142
|
1
|
2026-04-13T16:07:47.044660+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096467044_m1.jpg...
|
Firefox
|
Резултати от Търсене — Personal
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Резултати от Търсене
Резултати от Търсене
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
0€ / 0 лв.
0€ / 0 лв.
Всички Категории
Всички Категории
Wd red plus
Compares
0
Сравни
Wishlists
0
Любими
Резултати от Търсене
Резултати от Търсене
Начало
Начало
»
Резултати от Търсене
Резултати от Търсене
Хром
Стр.
1
от
2
Следваща страница
Последна страница
Записи
41
Сортирай
Цена, от Ниска към Висока Цена, от Ниска към Висока Цена, от Ниска към Висока
Цена, от Ниска към Висока
Страница
Отиди
EPSON
EPSON Premium semi gloss photo paper inkjet 251g/m2 100x150mm 50 sheets pack
EPSON Premium semi gloss photo paper inkjet 251g/m2 100x150mm 50 sheets pack
EPSON Premium semi gloss photo paper inkjet 251g/m2 100x150mm 50 sheets pack
EPSON Premium semi gloss photo paper inkjet 251g/m2 100x150mm 50 sheets pack
€11
27
/
22
04
лв
Оценете Продукта
RAZER
Razer BlackShark V2 X, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m Cable
Razer BlackShark V2 X, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m Cable
Razer BlackShark V2 X, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m Cable
Razer BlackShark V2 X, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m Cable
€75
36
/
147
39
лв
Оценете Продукта
RAZER
Razer BlackShark V2 X - Green, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m
Razer BlackShark V2 X - Green, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m
Razer BlackShark V2 X - Green, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m
Razer BlackShark V2 X - Green, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m
€100
25
/
196
07
лв
Оценете Продукта
WESTERN DIGITAL
WD Red Plus 4TB SATA 6Gb/s 3.5inch HDD
WD Red Plus 4TB SATA 6Gb/s 3.5inch HDD
WD Red Plus 4TB SATA 6Gb/s 3.5inch HDD
WD Red Plus 4TB SATA 6Gb/s 3.5inch HDD
€171
36
/
335
15
лв
Оценете Продукта
SANDISK
WD Blue SA510 SSD 1TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK
WD Blue SA510 SSD 1TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK
WD Blue SA510 SSD 1TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK
WD Blue SA510 SSD 1TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK
€214
67
/
419
86
лв
Оценете Продукта
Synology
Mesh Router WRX560 Wi-Fi 6; Wi-Fi 802.11ax standard support, WPA/WPA2/WPA3/OWE encryption
Mesh Router WRX560 Wi-Fi 6; Wi-Fi 802.11ax standard support, WPA/WPA2/WPA3/OWE encryption
Mesh Router WRX560 Wi-Fi 6; Wi-Fi 802.11ax standard support, WPA/WPA2/WPA3/OWE encryption
Mesh Router WRX560 Wi-Fi 6; Wi-Fi 802.11ax standard support, WPA/WPA2/WPA3/OWE encryption
€226
80
/
443
58
лв
Оценете Продукта
WESTERN_DIGITAL
WD Red Plus 8TB SATA 6Gb/s HDD Desktop
WD Red Plus 8TB SATA 6Gb/s HDD Desktop
WD Red Plus 8TB SATA 6Gb/s HDD Desktop
WD Red Plus 8TB SATA 6Gb/s HDD Desktop
€309
83
/
605
97
лв
Оценете Продукта
Бърз Преглед
Добави в Количката
Сравни
Добави в Любими
AXIS_COMMUNICATIONS
AXIS M3085-V Camera fixed dome
AXIS M3085-V Camera fixed dome
AXIS M3085-V Camera fixed dome
AXIS M3085-V Camera fixed dome
€332
52
/
650
35
лв
Оценете Продукта
WESTERN DIGITAL
WD Red Plus 12TB SATA 6Gb/s 3.5inch HDD
WD Red Plus 12TB SATA 6Gb/s 3.5inch HDD
WD Red Plus 12TB SATA 6Gb/s 3.5inch HDD
WD Red Plus 12TB SATA 6Gb/s 3.5inch HDD
€379
44
/
742
12
лв
Оценете Продукта
AXIS_COMMUNICATIONS
AXIS M3086-V Camera fixed dome
AXIS M3086-V Camera fixed dome
AXIS M3086-V Camera fixed dome
AXIS M3086-V Camera fixed dome
€409
80
/
801
50
лв
Оценете Продукта
SANDISK
WD Blue SA510 SSD 2TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK
WD Blue SA510 SSD 2TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK
WD Blue SA510 SSD 2TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK
WD Blue SA510 SSD 2TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK
€426
14
/
833
46
лв
Оценете Продукта
THRUSTMASТER
Волан THRUSTMASTER TS-PC Racer Ferrari 488 Challenge Edition за PC
Волан THRUSTMASTER TS-PC Racer Ferrari 488 Challenge Edition за PC
Волан THRUSTMASTER TS-PC Racer Ferrari 488 Challenge Edition за PC
Волан THRUSTMASTER TS-PC Racer Ferrari 488 Challenge Edition за PC
€486
59
/
951
69
лв
Оценете Продукта
AXIS_COMMUNICATIONS
AXIS M2036-LE
AXIS M2036-LE
AXIS M2036-LE
AXIS M2036-LE
€486
84
/
952
18
лв
Оценете Продукта
Garmin
Garmin FĒNIX® E - fēnix E – 47 мм, AMOLED - Stainless Steel с Black силиконова каишка 010-03025-00
Garmin FĒNIX® E - fēnix E – 47 мм, AMOLED - Stainless Steel с Black силиконова каишка 010-03025-00
Garmin FĒNIX® E - fēnix E – 47 мм, AMOLED - Stainless Steel с Black силиконова каишка 010-03025-00
Garmin FĒNIX® E - fēnix E – 47 мм, AMOLED - Stainless Steel с Black силиконова каишка 010-03025-00...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Inbox - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Shameless • HBO Max","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Shameless • HBO Max","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Mute tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Machines - Tailscale","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Machines - Tailscale","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe Dashboard","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe Dashboard","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Резултати от Търсене","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Резултати от Търсене","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"google maps timeline export - Google Search","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"google maps timeline export - Google Search","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New Tab","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"0886 177 222","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0886 177 222","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"info@xtreme.bg","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"info@xtreme.bg","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"facebook","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"twitter","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"instagram","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"xtreme","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"НАЧАЛО","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"НАЧАЛО","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"МАГАЗИН","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"МАГАЗИН","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"БЛОГ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"БЛОГ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"КОНТАКТИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"КОНТАКТИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"РЕКЛАМАЦИИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"РЕКЛАМАЦИИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Lukáš Koválik","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":" 0€ / 0 лв.","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0€ / 0 лв.","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Всички Категории","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Всички Категории","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Wd red plus","depth":11,"value":"Wd red plus","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Compares","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Сравни","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Wishlists","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Любими","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Резултати от Търсене","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Резултати от Търсене","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Начало","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Начало","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"»","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Резултати от Търсене","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Резултати от Търсене","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Хром","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Стр.","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"от","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Следваща страница","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Последна страница","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Записи","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"41","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Сортирай","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Цена, от Ниска към Висока Цена, от Ниска към Висока Цена, от Ниска към Висока","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Цена, от Ниска към Висока","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Страница","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Отиди","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"EPSON","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"EPSON Premium semi gloss photo paper inkjet 251g/m2 100x150mm 50 sheets pack","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"EPSON Premium semi gloss photo paper inkjet 251g/m2 100x150mm 50 sheets pack","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"EPSON Premium semi gloss photo paper inkjet 251g/m2 100x150mm 50 sheets pack","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"EPSON Premium semi gloss photo paper inkjet 251g/m2 100x150mm 50 sheets pack","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€11","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"27","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"22","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"04","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"RAZER","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Razer BlackShark V2 X, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m Cable","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Razer BlackShark V2 X, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m Cable","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Razer BlackShark V2 X, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m Cable","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Razer BlackShark V2 X, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m Cable","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€75","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"36","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"147","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"39","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"RAZER","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Razer BlackShark V2 X - Green, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Razer BlackShark V2 X - Green, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Razer BlackShark V2 X - Green, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Razer BlackShark V2 X - Green, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€100","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"25","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"196","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"07","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"WESTERN DIGITAL","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"WD Red Plus 4TB SATA 6Gb/s 3.5inch HDD","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"WD Red Plus 4TB SATA 6Gb/s 3.5inch HDD","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"WD Red Plus 4TB SATA 6Gb/s 3.5inch HDD","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"WD Red Plus 4TB SATA 6Gb/s 3.5inch HDD","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€171","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"36","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"335","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"15","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"SANDISK","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"WD Blue SA510 SSD 1TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"WD Blue SA510 SSD 1TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"WD Blue SA510 SSD 1TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"WD Blue SA510 SSD 1TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€214","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"67","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"419","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"86","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Synology","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Mesh Router WRX560 Wi-Fi 6; Wi-Fi 802.11ax standard support, WPA/WPA2/WPA3/OWE encryption","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Mesh Router WRX560 Wi-Fi 6; Wi-Fi 802.11ax standard support, WPA/WPA2/WPA3/OWE encryption","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Mesh Router WRX560 Wi-Fi 6; Wi-Fi 802.11ax standard support, WPA/WPA2/WPA3/OWE encryption","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Mesh Router WRX560 Wi-Fi 6; Wi-Fi 802.11ax standard support, WPA/WPA2/WPA3/OWE encryption","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€226","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"80","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"443","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"58","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"WESTERN_DIGITAL","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"WD Red Plus 8TB SATA 6Gb/s HDD Desktop","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":true,"is_selected":false},{"role":"AXHeading","text":"WD Red Plus 8TB SATA 6Gb/s HDD Desktop","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"WD Red Plus 8TB SATA 6Gb/s HDD Desktop","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"WD Red Plus 8TB SATA 6Gb/s HDD Desktop","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€309","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"83","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"605","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"97","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Бърз Преглед","depth":10,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Добави в Количката","depth":10,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Сравни","depth":10,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Добави в Любими","depth":10,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"AXIS_COMMUNICATIONS","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"AXIS M3085-V Camera fixed dome","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"AXIS M3085-V Camera fixed dome","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"AXIS M3085-V Camera fixed dome","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"AXIS M3085-V Camera fixed dome","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€332","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"52","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"650","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"35","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"WESTERN DIGITAL","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"WD Red Plus 12TB SATA 6Gb/s 3.5inch HDD","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"WD Red Plus 12TB SATA 6Gb/s 3.5inch HDD","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"WD Red Plus 12TB SATA 6Gb/s 3.5inch HDD","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"WD Red Plus 12TB SATA 6Gb/s 3.5inch HDD","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€379","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"44","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"742","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"12","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"AXIS_COMMUNICATIONS","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"AXIS M3086-V Camera fixed dome","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"AXIS M3086-V Camera fixed dome","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"AXIS M3086-V Camera fixed dome","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"AXIS M3086-V Camera fixed dome","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€409","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"80","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"801","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"50","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"SANDISK","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"WD Blue SA510 SSD 2TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"WD Blue SA510 SSD 2TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"WD Blue SA510 SSD 2TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"WD Blue SA510 SSD 2TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€426","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"14","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"833","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"46","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"THRUSTMASТER","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Волан THRUSTMASTER TS-PC Racer Ferrari 488 Challenge Edition за PC","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Волан THRUSTMASTER TS-PC Racer Ferrari 488 Challenge Edition за PC","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Волан THRUSTMASTER TS-PC Racer Ferrari 488 Challenge Edition за PC","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Волан THRUSTMASTER TS-PC Racer Ferrari 488 Challenge Edition за PC","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€486","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"59","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"951","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"69","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"AXIS_COMMUNICATIONS","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"AXIS M2036-LE","depth":10,"bounds":{"left":0.0,"top":0.025555555,"width":0.1736111,"height":0.02},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"AXIS M2036-LE","depth":9,"bounds":{"left":0.0,"top":0.06333333,"width":0.20069444,"height":0.064444445},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"AXIS M2036-LE","depth":10,"bounds":{"left":0.0,"top":0.06333333,"width":0.06736111,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"AXIS M2036-LE","depth":11,"bounds":{"left":0.0,"top":0.06333333,"width":0.06736111,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€486","depth":10,"bounds":{"left":0.0,"top":0.14555556,"width":0.033333335,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"84","depth":11,"bounds":{"left":0.031944446,"top":0.14666666,"width":0.0125,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"bounds":{"left":0.048611112,"top":0.15555556,"width":0.0034722222,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"952","depth":10,"bounds":{"left":0.052083332,"top":0.14555556,"width":0.029166667,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18","depth":11,"bounds":{"left":0.08125,"top":0.14666666,"width":0.0125,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"bounds":{"left":0.09375,"top":0.14555556,"width":0.020833334,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Garmin","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Garmin FĒNIX® E - fēnix E – 47 мм, AMOLED - Stainless Steel с Black силиконова каишка 010-03025-00","depth":10,"bounds":{"left":0.15694444,"top":0.025555555,"width":0.1736111,"height":0.02},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Garmin FĒNIX® E - fēnix E – 47 мм, AMOLED - Stainless Steel с Black силиконова каишка 010-03025-00","depth":9,"bounds":{"left":0.14375,"top":0.06333333,"width":0.2,"height":0.064444445},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Garmin FĒNIX® E - fēnix E – 47 мм, AMOLED - Stainless Steel с Black силиконова каишка 010-03025-00","depth":10,"bounds":{"left":0.14375,"top":0.06333333,"width":0.19930555,"height":0.06333333},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Garmin FĒNIX® E - fēnix E – 47 мм, AMOLED - Stainless Steel с Black силиконова каишка 010-03025-00","depth":11,"bounds":{"left":0.14375,"top":0.06333333,"width":0.19930555,"height":0.06333333},"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
8880060997133796261
|
4643321602431812068
|
click
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Резултати от Търсене
Резултати от Търсене
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
0€ / 0 лв.
0€ / 0 лв.
Всички Категории
Всички Категории
Wd red plus
Compares
0
Сравни
Wishlists
0
Любими
Резултати от Търсене
Резултати от Търсене
Начало
Начало
»
Резултати от Търсене
Резултати от Търсене
Хром
Стр.
1
от
2
Следваща страница
Последна страница
Записи
41
Сортирай
Цена, от Ниска към Висока Цена, от Ниска към Висока Цена, от Ниска към Висока
Цена, от Ниска към Висока
Страница
Отиди
EPSON
EPSON Premium semi gloss photo paper inkjet 251g/m2 100x150mm 50 sheets pack
EPSON Premium semi gloss photo paper inkjet 251g/m2 100x150mm 50 sheets pack
EPSON Premium semi gloss photo paper inkjet 251g/m2 100x150mm 50 sheets pack
EPSON Premium semi gloss photo paper inkjet 251g/m2 100x150mm 50 sheets pack
€11
27
/
22
04
лв
Оценете Продукта
RAZER
Razer BlackShark V2 X, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m Cable
Razer BlackShark V2 X, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m Cable
Razer BlackShark V2 X, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m Cable
Razer BlackShark V2 X, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m Cable
€75
36
/
147
39
лв
Оценете Продукта
RAZER
Razer BlackShark V2 X - Green, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m
Razer BlackShark V2 X - Green, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m
Razer BlackShark V2 X - Green, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m
Razer BlackShark V2 X - Green, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m
€100
25
/
196
07
лв
Оценете Продукта
WESTERN DIGITAL
WD Red Plus 4TB SATA 6Gb/s 3.5inch HDD
WD Red Plus 4TB SATA 6Gb/s 3.5inch HDD
WD Red Plus 4TB SATA 6Gb/s 3.5inch HDD
WD Red Plus 4TB SATA 6Gb/s 3.5inch HDD
€171
36
/
335
15
лв
Оценете Продукта
SANDISK
WD Blue SA510 SSD 1TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK
WD Blue SA510 SSD 1TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK
WD Blue SA510 SSD 1TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK
WD Blue SA510 SSD 1TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK
€214
67
/
419
86
лв
Оценете Продукта
Synology
Mesh Router WRX560 Wi-Fi 6; Wi-Fi 802.11ax standard support, WPA/WPA2/WPA3/OWE encryption
Mesh Router WRX560 Wi-Fi 6; Wi-Fi 802.11ax standard support, WPA/WPA2/WPA3/OWE encryption
Mesh Router WRX560 Wi-Fi 6; Wi-Fi 802.11ax standard support, WPA/WPA2/WPA3/OWE encryption
Mesh Router WRX560 Wi-Fi 6; Wi-Fi 802.11ax standard support, WPA/WPA2/WPA3/OWE encryption
€226
80
/
443
58
лв
Оценете Продукта
WESTERN_DIGITAL
WD Red Plus 8TB SATA 6Gb/s HDD Desktop
WD Red Plus 8TB SATA 6Gb/s HDD Desktop
WD Red Plus 8TB SATA 6Gb/s HDD Desktop
WD Red Plus 8TB SATA 6Gb/s HDD Desktop
€309
83
/
605
97
лв
Оценете Продукта
Бърз Преглед
Добави в Количката
Сравни
Добави в Любими
AXIS_COMMUNICATIONS
AXIS M3085-V Camera fixed dome
AXIS M3085-V Camera fixed dome
AXIS M3085-V Camera fixed dome
AXIS M3085-V Camera fixed dome
€332
52
/
650
35
лв
Оценете Продукта
WESTERN DIGITAL
WD Red Plus 12TB SATA 6Gb/s 3.5inch HDD
WD Red Plus 12TB SATA 6Gb/s 3.5inch HDD
WD Red Plus 12TB SATA 6Gb/s 3.5inch HDD
WD Red Plus 12TB SATA 6Gb/s 3.5inch HDD
€379
44
/
742
12
лв
Оценете Продукта
AXIS_COMMUNICATIONS
AXIS M3086-V Camera fixed dome
AXIS M3086-V Camera fixed dome
AXIS M3086-V Camera fixed dome
AXIS M3086-V Camera fixed dome
€409
80
/
801
50
лв
Оценете Продукта
SANDISK
WD Blue SA510 SSD 2TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK
WD Blue SA510 SSD 2TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK
WD Blue SA510 SSD 2TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK
WD Blue SA510 SSD 2TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK
€426
14
/
833
46
лв
Оценете Продукта
THRUSTMASТER
Волан THRUSTMASTER TS-PC Racer Ferrari 488 Challenge Edition за PC
Волан THRUSTMASTER TS-PC Racer Ferrari 488 Challenge Edition за PC
Волан THRUSTMASTER TS-PC Racer Ferrari 488 Challenge Edition за PC
Волан THRUSTMASTER TS-PC Racer Ferrari 488 Challenge Edition за PC
€486
59
/
951
69
лв
Оценете Продукта
AXIS_COMMUNICATIONS
AXIS M2036-LE
AXIS M2036-LE
AXIS M2036-LE
AXIS M2036-LE
€486
84
/
952
18
лв
Оценете Продукта
Garmin
Garmin FĒNIX® E - fēnix E – 47 мм, AMOLED - Stainless Steel с Black силиконова каишка 010-03025-00
Garmin FĒNIX® E - fēnix E – 47 мм, AMOLED - Stainless Steel с Black силиконова каишка 010-03025-00
Garmin FĒNIX® E - fēnix E – 47 мм, AMOLED - Stainless Steel с Black силиконова каишка 010-03025-00
Garmin FĒNIX® E - fēnix E – 47 мм, AMOLED - Stainless Steel с Black силиконова каишка 010-03025-00...
|
7588
|
|
7591
|
142
|
3
|
2026-04-13T16:07:58.285122+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096478285_m1.jpg...
|
Firefox
|
Резултати от Търсене — Personal
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Резултати от Търсене
Резултати от Търсене
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
0€ / 0 лв.
0€ / 0 лв.
Всички Категории
Всички Категории
Wd red plus
Compares
0
Сравни
Wishlists
0
Любими
Резултати от Търсене
Резултати от Търсене
Начало
Начало
»
Резултати от Търсене
Резултати от Търсене
Huawei
Стр.
1
от
2
Следваща страница
Последна страница
Записи
41
Сортирай
Цена, от Ниска към Висока Цена, от Ниска към Висока Цена, от Ниска към Висока
Цена, от Ниска към Висока
Страница
Отиди
EPSON
EPSON Premium semi gloss photo paper inkjet 251g/m2 100x150mm 50 sheets pack
EPSON Premium semi gloss photo paper inkjet 251g/m2 100x150mm 50 sheets pack
EPSON Premium semi gloss photo paper inkjet 251g/m2 100x150mm 50 sheets pack
EPSON Premium semi gloss photo paper inkjet 251g/m2 100x150mm 50 sheets pack
€11
27
/
22
04
лв
Оценете Продукта
RAZER
Razer BlackShark V2 X, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m Cable
Razer BlackShark V2 X, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m Cable
Razer BlackShark V2 X, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m Cable
Razer BlackShark V2 X, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m Cable
€75
36
/
147
39
лв
Оценете Продукта
RAZER
Razer BlackShark V2 X - Green, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m
Razer BlackShark V2 X - Green, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m
Razer BlackShark V2 X - Green, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m
Razer BlackShark V2 X - Green, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m
€100
25
/
196
07
лв
Оценете Продукта
WESTERN DIGITAL
WD Red Plus 4TB SATA 6Gb/s 3.5inch HDD
WD Red Plus 4TB SATA 6Gb/s 3.5inch HDD
WD Red Plus 4TB SATA 6Gb/s 3.5inch HDD
WD Red Plus 4TB SATA 6Gb/s 3.5inch HDD
€171
36
/
335
15
лв
Оценете Продукта
SANDISK
WD Blue SA510 SSD 1TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK
WD Blue SA510 SSD 1TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK
WD Blue SA510 SSD 1TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK
WD Blue SA510 SSD 1TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK
€214
67
/
419
86
лв
Оценете Продукта
Synology
Mesh Router WRX560 Wi-Fi 6; Wi-Fi 802.11ax standard support, WPA/WPA2/WPA3/OWE encryption
Mesh Router WRX560 Wi-Fi 6; Wi-Fi 802.11ax standard support, WPA/WPA2/WPA3/OWE encryption
Mesh Router WRX560 Wi-Fi 6; Wi-Fi 802.11ax standard support, WPA/WPA2/WPA3/OWE encryption
Mesh Router WRX560 Wi-Fi 6; Wi-Fi 802.11ax standard support, WPA/WPA2/WPA3/OWE encryption
€226
80
/
443
58
лв
Оценете Продукта
WESTERN_DIGITAL
WD Red Plus 8TB SATA 6Gb/s HDD Desktop
WD Red Plus 8TB SATA 6Gb/s HDD Desktop
WD Red Plus 8TB SATA 6Gb/s HDD Desktop
WD Red Plus 8TB SATA 6Gb/s HDD Desktop
€309
83
/
605
97
лв
Оценете Продукта
Бърз Преглед
Добави в Количката
Сравни
Добави в Любими
AXIS_COMMUNICATIONS
AXIS M3085-V Camera fixed dome
AXIS M3085-V Camera fixed dome
AXIS M3085-V Camera fixed dome
AXIS M3085-V Camera fixed dome
€332
52
/
650
35
лв
Оценете Продукта
WESTERN DIGITAL
WD Red Plus 12TB SATA 6Gb/s 3.5inch HDD
WD Red Plus 12TB SATA 6Gb/s 3.5inch HDD
WD Red Plus 12TB SATA 6Gb/s 3.5inch HDD
WD Red Plus 12TB SATA 6Gb/s 3.5inch HDD
€379
44
/
742
12
лв
Оценете Продукта
AXIS_COMMUNICATIONS
AXIS M3086-V Camera fixed dome
AXIS M3086-V Camera fixed dome
AXIS M3086-V Camera fixed dome
AXIS M3086-V Camera fixed dome
€409
80
/
801
50
лв
Оценете Продукта
SANDISK
WD Blue SA510 SSD 2TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK
WD Blue SA510 SSD 2TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK
WD Blue SA510 SSD 2TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK
WD Blue SA510 SSD 2TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK
€426
14
/
833
46
лв
Оценете Продукта
THRUSTMASТER
Волан THRUSTMASTER TS-PC Racer Ferrari 488 Challenge Edition за PC
Волан THRUSTMASTER TS-PC Racer Ferrari 488 Challenge Edition за PC
Волан THRUSTMASTER TS-PC Racer Ferrari 488 Challenge Edition за PC
Волан THRUSTMASTER TS-PC Racer Ferrari 488 Challenge Edition за PC
€486
59
/
951
69
лв
Оценете Продукта
AXIS_COMMUNICATIONS
AXIS M2036-LE
AXIS M2036-LE
AXIS M2036-LE
AXIS M2036-LE
€486
84
/
952
18
лв
Оценете Продукта...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Inbox - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Shameless • HBO Max","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Shameless • HBO Max","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Mute tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Machines - Tailscale","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Machines - Tailscale","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe Dashboard","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe Dashboard","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Резултати от Търсене","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Резултати от Търсене","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"google maps timeline export - Google Search","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"google maps timeline export - Google Search","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New Tab","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"0886 177 222","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0886 177 222","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"info@xtreme.bg","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"info@xtreme.bg","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"facebook","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"twitter","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"instagram","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"xtreme","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"НАЧАЛО","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"НАЧАЛО","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"МАГАЗИН","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"МАГАЗИН","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"БЛОГ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"БЛОГ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"КОНТАКТИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"КОНТАКТИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"РЕКЛАМАЦИИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"РЕКЛАМАЦИИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Lukáš Koválik","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":" 0€ / 0 лв.","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0€ / 0 лв.","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Всички Категории","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Всички Категории","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Wd red plus","depth":11,"value":"Wd red plus","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Compares","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Сравни","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Wishlists","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Любими","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Резултати от Търсене","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Резултати от Търсене","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Начало","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Начало","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"»","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Резултати от Търсене","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Резултати от Търсене","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Huawei","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Стр.","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"от","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Следваща страница","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Последна страница","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Записи","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"41","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Сортирай","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Цена, от Ниска към Висока Цена, от Ниска към Висока Цена, от Ниска към Висока","depth":7,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Цена, от Ниска към Висока","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Страница","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Отиди","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"EPSON","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"EPSON Premium semi gloss photo paper inkjet 251g/m2 100x150mm 50 sheets pack","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"EPSON Premium semi gloss photo paper inkjet 251g/m2 100x150mm 50 sheets pack","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"EPSON Premium semi gloss photo paper inkjet 251g/m2 100x150mm 50 sheets pack","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"EPSON Premium semi gloss photo paper inkjet 251g/m2 100x150mm 50 sheets pack","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€11","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"27","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"22","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"04","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"RAZER","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Razer BlackShark V2 X, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m Cable","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Razer BlackShark V2 X, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m Cable","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Razer BlackShark V2 X, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m Cable","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Razer BlackShark V2 X, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m Cable","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€75","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"36","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"147","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"39","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"RAZER","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Razer BlackShark V2 X - Green, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Razer BlackShark V2 X - Green, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Razer BlackShark V2 X - Green, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Razer BlackShark V2 X - Green, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€100","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"25","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"196","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"07","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"WESTERN DIGITAL","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"WD Red Plus 4TB SATA 6Gb/s 3.5inch HDD","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"WD Red Plus 4TB SATA 6Gb/s 3.5inch HDD","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"WD Red Plus 4TB SATA 6Gb/s 3.5inch HDD","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"WD Red Plus 4TB SATA 6Gb/s 3.5inch HDD","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€171","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"36","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"335","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"15","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"SANDISK","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"WD Blue SA510 SSD 1TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"WD Blue SA510 SSD 1TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"WD Blue SA510 SSD 1TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"WD Blue SA510 SSD 1TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€214","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"67","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"419","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"86","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Synology","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Mesh Router WRX560 Wi-Fi 6; Wi-Fi 802.11ax standard support, WPA/WPA2/WPA3/OWE encryption","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Mesh Router WRX560 Wi-Fi 6; Wi-Fi 802.11ax standard support, WPA/WPA2/WPA3/OWE encryption","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Mesh Router WRX560 Wi-Fi 6; Wi-Fi 802.11ax standard support, WPA/WPA2/WPA3/OWE encryption","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Mesh Router WRX560 Wi-Fi 6; Wi-Fi 802.11ax standard support, WPA/WPA2/WPA3/OWE encryption","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€226","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"80","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"443","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"58","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"WESTERN_DIGITAL","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"WD Red Plus 8TB SATA 6Gb/s HDD Desktop","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"WD Red Plus 8TB SATA 6Gb/s HDD Desktop","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"WD Red Plus 8TB SATA 6Gb/s HDD Desktop","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"WD Red Plus 8TB SATA 6Gb/s HDD Desktop","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€309","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"83","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"605","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"97","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Бърз Преглед","depth":10,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Добави в Количката","depth":10,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Сравни","depth":10,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Добави в Любими","depth":10,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"AXIS_COMMUNICATIONS","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"AXIS M3085-V Camera fixed dome","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"AXIS M3085-V Camera fixed dome","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"AXIS M3085-V Camera fixed dome","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"AXIS M3085-V Camera fixed dome","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€332","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"52","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"650","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"35","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"WESTERN DIGITAL","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"WD Red Plus 12TB SATA 6Gb/s 3.5inch HDD","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"WD Red Plus 12TB SATA 6Gb/s 3.5inch HDD","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"WD Red Plus 12TB SATA 6Gb/s 3.5inch HDD","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"WD Red Plus 12TB SATA 6Gb/s 3.5inch HDD","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€379","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"44","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"742","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"12","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"AXIS_COMMUNICATIONS","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"AXIS M3086-V Camera fixed dome","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"AXIS M3086-V Camera fixed dome","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"AXIS M3086-V Camera fixed dome","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"AXIS M3086-V Camera fixed dome","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€409","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"80","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"801","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"50","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"SANDISK","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"WD Blue SA510 SSD 2TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"WD Blue SA510 SSD 2TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"WD Blue SA510 SSD 2TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"WD Blue SA510 SSD 2TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€426","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"14","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"833","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"46","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"THRUSTMASТER","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Волан THRUSTMASTER TS-PC Racer Ferrari 488 Challenge Edition за PC","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Волан THRUSTMASTER TS-PC Racer Ferrari 488 Challenge Edition за PC","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Волан THRUSTMASTER TS-PC Racer Ferrari 488 Challenge Edition за PC","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Волан THRUSTMASTER TS-PC Racer Ferrari 488 Challenge Edition за PC","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€486","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"59","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"951","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"69","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"AXIS_COMMUNICATIONS","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"AXIS M2036-LE","depth":10,"bounds":{"left":0.0,"top":0.025555555,"width":0.1736111,"height":0.02},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"AXIS M2036-LE","depth":9,"bounds":{"left":0.0,"top":0.06333333,"width":0.20069444,"height":0.064444445},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"AXIS M2036-LE","depth":10,"bounds":{"left":0.0,"top":0.06333333,"width":0.06736111,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"AXIS M2036-LE","depth":11,"bounds":{"left":0.0,"top":0.06333333,"width":0.06736111,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€486","depth":10,"bounds":{"left":0.0,"top":0.14555556,"width":0.033333335,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"84","depth":11,"bounds":{"left":0.031944446,"top":0.14666666,"width":0.0125,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"bounds":{"left":0.048611112,"top":0.15555556,"width":0.0034722222,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"952","depth":10,"bounds":{"left":0.052083332,"top":0.14555556,"width":0.029166667,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18","depth":11,"bounds":{"left":0.08125,"top":0.14666666,"width":0.0125,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"bounds":{"left":0.09375,"top":0.14555556,"width":0.020833334,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":9,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false}]...
|
5334663501262601062
|
7237394987799314916
|
click
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Резултати от Търсене
Резултати от Търсене
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
0€ / 0 лв.
0€ / 0 лв.
Всички Категории
Всички Категории
Wd red plus
Compares
0
Сравни
Wishlists
0
Любими
Резултати от Търсене
Резултати от Търсене
Начало
Начало
»
Резултати от Търсене
Резултати от Търсене
Huawei
Стр.
1
от
2
Следваща страница
Последна страница
Записи
41
Сортирай
Цена, от Ниска към Висока Цена, от Ниска към Висока Цена, от Ниска към Висока
Цена, от Ниска към Висока
Страница
Отиди
EPSON
EPSON Premium semi gloss photo paper inkjet 251g/m2 100x150mm 50 sheets pack
EPSON Premium semi gloss photo paper inkjet 251g/m2 100x150mm 50 sheets pack
EPSON Premium semi gloss photo paper inkjet 251g/m2 100x150mm 50 sheets pack
EPSON Premium semi gloss photo paper inkjet 251g/m2 100x150mm 50 sheets pack
€11
27
/
22
04
лв
Оценете Продукта
RAZER
Razer BlackShark V2 X, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m Cable
Razer BlackShark V2 X, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m Cable
Razer BlackShark V2 X, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m Cable
Razer BlackShark V2 X, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m Cable
€75
36
/
147
39
лв
Оценете Продукта
RAZER
Razer BlackShark V2 X - Green, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m
Razer BlackShark V2 X - Green, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m
Razer BlackShark V2 X - Green, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m
Razer BlackShark V2 X - Green, 12 Hz – 28 KHz Frequency Response, 32 Ω (1 kHz) Impedance, Razer TriForce Driver, Breathable memory foam, Advanced passive noise cancellation, Analog 3.5 mm Connection, 100 Hz – 10 kHz Microphone Frequency, 1.3 m
€100
25
/
196
07
лв
Оценете Продукта
WESTERN DIGITAL
WD Red Plus 4TB SATA 6Gb/s 3.5inch HDD
WD Red Plus 4TB SATA 6Gb/s 3.5inch HDD
WD Red Plus 4TB SATA 6Gb/s 3.5inch HDD
WD Red Plus 4TB SATA 6Gb/s 3.5inch HDD
€171
36
/
335
15
лв
Оценете Продукта
SANDISK
WD Blue SA510 SSD 1TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK
WD Blue SA510 SSD 1TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK
WD Blue SA510 SSD 1TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK
WD Blue SA510 SSD 1TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK
€214
67
/
419
86
лв
Оценете Продукта
Synology
Mesh Router WRX560 Wi-Fi 6; Wi-Fi 802.11ax standard support, WPA/WPA2/WPA3/OWE encryption
Mesh Router WRX560 Wi-Fi 6; Wi-Fi 802.11ax standard support, WPA/WPA2/WPA3/OWE encryption
Mesh Router WRX560 Wi-Fi 6; Wi-Fi 802.11ax standard support, WPA/WPA2/WPA3/OWE encryption
Mesh Router WRX560 Wi-Fi 6; Wi-Fi 802.11ax standard support, WPA/WPA2/WPA3/OWE encryption
€226
80
/
443
58
лв
Оценете Продукта
WESTERN_DIGITAL
WD Red Plus 8TB SATA 6Gb/s HDD Desktop
WD Red Plus 8TB SATA 6Gb/s HDD Desktop
WD Red Plus 8TB SATA 6Gb/s HDD Desktop
WD Red Plus 8TB SATA 6Gb/s HDD Desktop
€309
83
/
605
97
лв
Оценете Продукта
Бърз Преглед
Добави в Количката
Сравни
Добави в Любими
AXIS_COMMUNICATIONS
AXIS M3085-V Camera fixed dome
AXIS M3085-V Camera fixed dome
AXIS M3085-V Camera fixed dome
AXIS M3085-V Camera fixed dome
€332
52
/
650
35
лв
Оценете Продукта
WESTERN DIGITAL
WD Red Plus 12TB SATA 6Gb/s 3.5inch HDD
WD Red Plus 12TB SATA 6Gb/s 3.5inch HDD
WD Red Plus 12TB SATA 6Gb/s 3.5inch HDD
WD Red Plus 12TB SATA 6Gb/s 3.5inch HDD
€379
44
/
742
12
лв
Оценете Продукта
AXIS_COMMUNICATIONS
AXIS M3086-V Camera fixed dome
AXIS M3086-V Camera fixed dome
AXIS M3086-V Camera fixed dome
AXIS M3086-V Camera fixed dome
€409
80
/
801
50
лв
Оценете Продукта
SANDISK
WD Blue SA510 SSD 2TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK
WD Blue SA510 SSD 2TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK
WD Blue SA510 SSD 2TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK
WD Blue SA510 SSD 2TB SATA III 6Gb/s cased 2.5inch 7mm internal single-packed POWERED BY SANDISK
€426
14
/
833
46
лв
Оценете Продукта
THRUSTMASТER
Волан THRUSTMASTER TS-PC Racer Ferrari 488 Challenge Edition за PC
Волан THRUSTMASTER TS-PC Racer Ferrari 488 Challenge Edition за PC
Волан THRUSTMASTER TS-PC Racer Ferrari 488 Challenge Edition за PC
Волан THRUSTMASTER TS-PC Racer Ferrari 488 Challenge Edition за PC
€486
59
/
951
69
лв
Оценете Продукта
AXIS_COMMUNICATIONS
AXIS M2036-LE
AXIS M2036-LE
AXIS M2036-LE
AXIS M2036-LE
€486
84
/
952
18
лв
Оценете Продукта...
|
7590
|
|
7596
|
142
|
8
|
2026-04-13T16:08:12.475762+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096492475_m1.jpg...
|
Firefox
|
Резултати от Търсене — Personal
|
True
|
www.pazaruvaj.com/p/western-digital-red-plus-3-5-6 www.pazaruvaj.com/p/western-digital-red-plus-3-5-6tb-5400rpm-256mb-sata3-wd60efpx-pP883930389/#overviews/...
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Резултати от Търсене
xtreme.bg
DXP4800PLUS-B5F8
In Резултати от Търсене
xtreme.bg
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Резултати от Търсене
Резултати от Търсене
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
0€ / 0 лв.
0€ / 0 лв.
Всички Категории
Всички Категории
WD Red Plus 6TB
Compares
0
Сравни
Wishlists
0
Любими
Резултати от Търсене
Резултати от Търсене
Начало
Начало
»
Резултати от Търсене
Резултати от Търсене
Хром
Няма намерени продукти!
Търсенето работи като се опитва да намери продукт, който да съдържа всички думи от зададения текст.
Във вашия случай търси продукти, които съдържат всички тези думи:
[WD] [Red] [Plus] [6TB]
Запишете се за нашият Бюлетин
Запишете се за нашият Бюлетин
Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.
[EMAIL]
Запиши се
Facebook
Twitter
Instagram
xtreme
xtreme
Ако имате въпроси свържете се с нас!
Ако имате въпроси свържете се с нас!
[EMAIL]
[EMAIL]
+359 886 177 222
+359 886 177 222
Информация
Информация
Доставка
Доставка
Условия
Условия
Рекламация
Рекламация
Контакти
Контакти
За Нас
За Нас
Потребител
Потребител
Профил
Профил
История на Поръчките
История на Поръчките
Любими
Любими
GDPR
GDPR
Лични Данни
Лични Данни
Методи за Плащане
Методи за Плащане
Наложен Платеж
Кредитна/Дебитна Карта
Банков Превод
На изплащане ПБ Лични Финанси
Copyright © 2023
Xtreme.bg
Xtreme.bg
- Всички права запазени.
Онлайн магазин вървящ на
XCore
XCore...
|
[{"role":"AXStaticText","text& [{"role":"AXStaticText","text":"Резултати от Търсене","depth":4,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"xtreme.bg","depth":4,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Inbox - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Shameless • HBO Max","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Shameless • HBO Max","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Mute tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Machines - Tailscale","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Machines - Tailscale","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe Dashboard","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe Dashboard","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Резултати от Търсене","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Резултати от Търсене","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"google maps timeline export - Google Search","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"google maps timeline export - Google Search","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New Tab","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"0886 177 222","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0886 177 222","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"info@xtreme.bg","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"info@xtreme.bg","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"facebook","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"twitter","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"instagram","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"xtreme","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"НАЧАЛО","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"НАЧАЛО","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"МАГАЗИН","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"МАГАЗИН","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"БЛОГ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"БЛОГ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"КОНТАКТИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"КОНТАКТИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"РЕКЛАМАЦИИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"РЕКЛАМАЦИИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Lukáš Koválik","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":" 0€ / 0 лв.","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0€ / 0 лв.","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Всички Категории","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Всички Категории","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"WD Red Plus 6TB","depth":11,"value":"WD Red Plus 6TB","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Compares","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Сравни","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Wishlists","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Любими","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Резултати от Търсене","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Резултати от Търсене","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Начало","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Начало","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"»","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Резултати от Търсене","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Резултати от Търсене","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Хром","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Няма намерени продукти!","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Търсенето работи като се опитва да намери продукт, който да съдържа всички думи от зададения текст.","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Във вашия случай търси продукти, които съдържат всички тези думи:","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"[WD] [Red] [Plus] [6TB]","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Запишете се за нашият Бюлетин","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Запишете се за нашият Бюлетин","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"kovaliklukas@gmail.com","depth":8,"value":"kovaliklukas@gmail.com","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Запиши се","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Facebook","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Twitter","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Instagram","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"xtreme","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"xtreme","depth":10,"bounds":{"left":0.0,"top":0.0,"width":0.27847221,"height":0.026666667},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"bounds":{"left":0.0,"top":0.0,"width":0.027777778,"height":0.044444446},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Ако имате въпроси свържете се с нас!","depth":10,"bounds":{"left":0.0,"top":0.0,"width":0.2923611,"height":0.027777778},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ако имате въпроси свържете се с нас!","depth":11,"bounds":{"left":0.0,"top":0.0,"width":0.17986111,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"info@xtreme.bg","depth":11,"bounds":{"left":0.0,"top":0.045555554,"width":0.06944445,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"info@xtreme.bg","depth":12,"bounds":{"left":0.0,"top":0.045555554,"width":0.06944445,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"+359 886 177 222","depth":10,"bounds":{"left":0.0,"top":0.08888889,"width":0.10069445,"height":0.026666667},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"+359 886 177 222","depth":11,"bounds":{"left":0.0,"top":0.08888889,"width":0.10069445,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Информация","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Информация","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Доставка","depth":11,"bounds":{"left":0.25416666,"top":0.0,"width":0.044444446,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Доставка","depth":12,"bounds":{"left":0.25416666,"top":0.0,"width":0.044444446,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Условия","depth":11,"bounds":{"left":0.25416666,"top":0.0,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Условия","depth":12,"bounds":{"left":0.25416666,"top":0.0,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Рекламация","depth":11,"bounds":{"left":0.25416666,"top":0.0,"width":0.056944445,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Рекламация","depth":12,"bounds":{"left":0.25416666,"top":0.0,"width":0.056944445,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Контакти","depth":11,"bounds":{"left":0.25416666,"top":0.0044444446,"width":0.043055557,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Контакти","depth":12,"bounds":{"left":0.25416666,"top":0.0044444446,"width":0.043055557,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"За Нас","depth":11,"bounds":{"left":0.25416666,"top":0.032222223,"width":0.030555556,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"За Нас","depth":12,"bounds":{"left":0.25416666,"top":0.032222223,"width":0.030555556,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Потребител","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Потребител","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Профил","depth":11,"bounds":{"left":0.59791666,"top":0.0,"width":0.036805555,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Профил","depth":12,"bounds":{"left":0.59791666,"top":0.0,"width":0.036805555,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"История на Поръчките","depth":11,"bounds":{"left":0.59791666,"top":0.0,"width":0.104166664,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"История на Поръчките","depth":12,"bounds":{"left":0.59791666,"top":0.0,"width":0.104166664,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Любими","depth":11,"bounds":{"left":0.59791666,"top":0.0,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Любими","depth":12,"bounds":{"left":0.59791666,"top":0.0,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"GDPR","depth":11,"bounds":{"left":0.59791666,"top":0.0044444446,"width":0.025,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"GDPR","depth":12,"bounds":{"left":0.59791666,"top":0.0044444446,"width":0.025,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Лични Данни","depth":11,"bounds":{"left":0.59791666,"top":0.032222223,"width":0.061805554,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Лични Данни","depth":12,"bounds":{"left":0.59791666,"top":0.032222223,"width":0.061805554,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Методи за Плащане","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Методи за Плащане","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Наложен Платеж","depth":11,"bounds":{"left":0.9423611,"top":0.0,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Кредитна/Дебитна Карта","depth":11,"bounds":{"left":0.9423611,"top":0.0,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Банков Превод","depth":11,"bounds":{"left":0.9423611,"top":0.011111111,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"На изплащане ПБ Лични Финанси","depth":11,"bounds":{"left":0.9423611,"top":0.03888889,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Copyright © 2023","depth":8,"bounds":{"left":0.39097223,"top":0.15666667,"width":0.08055556,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Xtreme.bg","depth":8,"bounds":{"left":0.47152779,"top":0.15666667,"width":0.046527777,"height":0.02111111},"help_text":"Xtreme Online Store","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Xtreme.bg","depth":9,"bounds":{"left":0.47152779,"top":0.15666667,"width":0.046527777,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"- Всички права запазени.","depth":8,"bounds":{"left":0.51805556,"top":0.15666667,"width":0.11875,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Онлайн магазин вървящ на","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"XCore","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"XCore","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
-1847775432326084419
|
-1015238067700063982
|
click
|
accessibility
|
NULL
|
Резултати от Търсене
xtreme.bg
DXP4800PLUS-B5F8
In Резултати от Търсене
xtreme.bg
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Резултати от Търсене
Резултати от Търсене
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
0€ / 0 лв.
0€ / 0 лв.
Всички Категории
Всички Категории
WD Red Plus 6TB
Compares
0
Сравни
Wishlists
0
Любими
Резултати от Търсене
Резултати от Търсене
Начало
Начало
»
Резултати от Търсене
Резултати от Търсене
Хром
Няма намерени продукти!
Търсенето работи като се опитва да намери продукт, който да съдържа всички думи от зададения текст.
Във вашия случай търси продукти, които съдържат всички тези думи:
[WD] [Red] [Plus] [6TB]
Запишете се за нашият Бюлетин
Запишете се за нашият Бюлетин
Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.
[EMAIL]
Запиши се
Facebook
Twitter
Instagram
xtreme
xtreme
Ако имате въпроси свържете се с нас!
Ако имате въпроси свържете се с нас!
[EMAIL]
[EMAIL]
+359 886 177 222
+359 886 177 222
Информация
Информация
Доставка
Доставка
Условия
Условия
Рекламация
Рекламация
Контакти
Контакти
За Нас
За Нас
Потребител
Потребител
Профил
Профил
История на Поръчките
История на Поръчките
Любими
Любими
GDPR
GDPR
Лични Данни
Лични Данни
Методи за Плащане
Методи за Плащане
Наложен Платеж
Кредитна/Дебитна Карта
Банков Превод
На изплащане ПБ Лични Финанси
Copyright © 2023
Xtreme.bg
Xtreme.bg
- Всички права запазени.
Онлайн магазин вървящ на
XCore
XCore...
|
NULL
|
|
7598
|
142
|
10
|
2026-04-13T16:08:19.061529+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096499061_m1.jpg...
|
Firefox
|
Твърд диск, Western Digital Red 6TB Plus ( 3.5" Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 — Personal...
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
0€ / 0 лв.
0€ / 0 лв.
Всички Категории
Всички Категории
Търси в Продуктите ...
Compares
0
Сравни
Wishlists
0
Любими
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 RPM, SATA 6Gb/s )
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 RPM, SATA 6Gb/s )
Начало
Начало
»
Магазин
Магазин
»
Компютри и Периферия
Компютри и Периферия
»
Компоненти
Компоненти
»
Твърди Дискове
Твърди Дискове
WESTERN DIGITAL
Цена
€239
76
/
468
93
лв
с ДДС
* ВЪНШЕН ДОСТАВЧИК - (1 ДО 3 ДНИ)
*
- Стоката е в склад на официалния вносител на марката за България. Времето за доставка е обикновено от 1 до 3 работни дни. Възможно е към момента на завършване на поръчката, продукта да е вече изчерпан. В случай на изчерпана наличност ще се свържем с Вас
К-во:
2
Добави в Количката
Добави в Количката
Сравни Продукта
Сравни
Добави в Любими
Удължи гаранцията си
Удължи гаранцията си
+1 година: + 36€
+2 години: + 46€
Код
:
WD60EFPX
Категория
:
Твърди Дискове
Твърди Дискове
Гаранция
:
3 Години
РЕЙТИНГ
Покажи Статистика
Добави
ТВОЯ РЕЙТИНГ
Оценете Продукта
Оцени
МНЕНИЯ
Напиши
Улеснено Поръчване -
като въведете само телефон и име:
[PHONE]
Lukáš Koválik
Съгласен съм с
Общите условия
Общите условия
Ще Ви потърсим в рамките на работния ден. Внимание: При грешен телефонен номер, нямаме начин да се свържем с Вас.
КУПИ
Информираме Ви, че въпреки нашите усилия не можем да гарантираме, че публикуваната информация и снимки не съдържат неточности или грешки, които не могат да бъдат правно основание за претенции.
ОПИСАНИЕ
ОПИСАНИЕ
ДЕТАЙЛИ
ДЕТАЙЛИ
МНЕНИЯ
МНЕНИЯ
ИИ ОПИСАНИЕ
ИИ ОПИСАНИЕ
Предназначен за
Сториджи
Капацитет, GB
6 000 GB (6 TB)
Външен/ вътрешен
Internal
Размер, inch
3.5" (8.89 cm)
Скорост, об/мин
5 400 rpm
Интерфейс
SATA 6Gb/s
Цвят
-
Приложение
за специализирана употреба
Предназначен за
Капацитет, GB
Външен/ вътрешен
Размер, inch
Скорост, об/мин
Интерфейс
Цвят
Приложение
Сториджи
6 000 GB (6 TB)
Internal
3.5" (8.89 cm)
5 400 rpm
SATA 6Gb/s
-
за специализирана употреба
Хром
ПРОДУКТИ ОТ СЪЩАТА КАТЕГОРИЯ
ПРОДУКТИ ОТ СЪЩАТА КАТЕГОРИЯ
TRANSCEND
Твърд диск, Transcend 1TB, 2.5" Portable HDD, StoreJet H3, Purple, Anti-shock
Твърд диск, Transcend 1TB, 2.5" Portable HDD, StoreJet H3, Purple, Anti-shock
Твърд диск, Transcend 1TB, 2.5" Portable HDD, StoreJet H3, Purple, Anti-shock
Твърд диск, Transcend 1TB, 2.5" Portable HDD, StoreJet H3, Purple, Anti-shock
€82
31
/
160
98
лв
Оценете Продукта
LENOVO
Твърд диск, Lenovo ThinkSystem 2.5" 1.2TB 10K SAS 12Gb Hot Swap 512n HDD
Твърд диск, Lenovo ThinkSystem 2.5" 1.2TB 10K SAS 12Gb Hot Swap 512n HDD
Твърд диск, Lenovo ThinkSystem 2.5" 1.2TB 10K SAS 12Gb Hot Swap 512n HDD
Твърд диск, Lenovo ThinkSystem 2.5" 1.2TB 10K SAS 12Gb Hot Swap 512n HDD
€269
76
/
527
60
лв
Оценете Продукта
APACER
Твърд диск, Apacer AC633, 5TB 2.5" SATA HDD USB 3.2 Military-Grade Shockproof Portable Hard Drive
Твърд диск, Apacer AC633, 5TB 2.5" SATA HDD USB 3.2 Military-Grade Shockproof Portable Hard Drive
Твърд диск, Apacer AC633, 5TB 2.5" SATA HDD USB 3.2 Military-Grade Shockproof Portable Hard Drive
Твърд диск, Apacer AC633, 5TB 2.5" SATA HDD USB 3.2 Military-Grade Shockproof Portable Hard Drive
€196
91
/
385
12
лв
Оценете Продукта
TRANSCEND
Твърд диск, Transcend 4TB, 2.5" Portable HDD, StoreJet M3, Iron Gray
Твърд диск, Transcend 4TB, 2.5" Portable HDD, StoreJet M3, Iron Gray
Твърд диск, Transcend 4TB, 2.5" Portable HDD, StoreJet M3, Iron Gray
Твърд диск, Transcend 4TB, 2.5" Portable HDD, StoreJet M3, Iron Gray
€183
59
/
359
07
лв
Оценете Продукта
FSAS
Твърд диск, Fsas HD SATA 6G 4TB 7.2K HOT PL 3.5' BC
Твърд диск, Fsas HD SATA 6G 4TB 7.2K HOT PL 3.5' BC
Твърд диск, Fsas HD SATA 6G 4TB 7.2K HOT PL 3.5' BC
Твърд диск, Fsas HD SATA 6G 4TB 7.2K HOT PL 3.5' BC
€286
91
/
561
15
лв
Оценете Продукта
WESTERN DIGITAL
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 RPM, SATA 6Gb/s )
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 RPM, SATA 6Gb/s )
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 RPM, SATA 6Gb/s )
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 RPM, SATA 6Gb/s )
€239
76
/
468
93
лв
Оценете Продукта
1 of 3
•
1
2 of 3
•
2
3 of 3
•
3
ПРОДУКТИ ОТ СЪЩИЯ ПРОИЗВОДИТЕЛ
ПРОДУКТИ ОТ СЪЩИЯ ПРОИЗВОДИТЕЛ...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Inbox - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Shameless • HBO Max","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Shameless • HBO Max","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Mute tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Machines - Tailscale","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Machines - Tailscale","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe Dashboard","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe Dashboard","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Твърд диск, Western Digital Red 6TB Plus ( 3.5\", 256MB, 5400","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Твърд диск, Western Digital Red 6TB Plus ( 3.5\", 256MB, 5400","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"google maps timeline export - Google Search","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"google maps timeline export - Google Search","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New Tab","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"0886 177 222","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0886 177 222","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"info@xtreme.bg","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"info@xtreme.bg","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"facebook","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"twitter","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"instagram","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"xtreme","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"НАЧАЛО","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"НАЧАЛО","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"МАГАЗИН","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"МАГАЗИН","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"БЛОГ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"БЛОГ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"КОНТАКТИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"КОНТАКТИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"РЕКЛАМАЦИИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"РЕКЛАМАЦИИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Lukáš Koválik","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":" 0€ / 0 лв.","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0€ / 0 лв.","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Всички Категории","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Всички Категории","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Търси в Продуктите ...","depth":11,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Compares","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Сравни","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Wishlists","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Любими","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Твърд диск, Western Digital Red 6TB Plus ( 3.5\", 256MB, 5400 RPM, SATA 6Gb/s )","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Твърд диск, Western Digital Red 6TB Plus ( 3.5\", 256MB, 5400 RPM, SATA 6Gb/s )","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Начало","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Начало","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"»","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Магазин","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Магазин","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"»","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Компютри и Периферия","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Компютри и Периферия","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"»","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Компоненти","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Компоненти","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"»","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Твърди Дискове","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Твърди Дискове","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"WESTERN DIGITAL","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Цена","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€239","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"76","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"468","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"93","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"с ДДС","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"* ВЪНШЕН ДОСТАВЧИК - (1 ДО 3 ДНИ)","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"*","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"- Стоката е в склад на официалния вносител на марката за България. Времето за доставка е обикновено от 1 до 3 работни дни. Възможно е към момента на завършване на поръчката, продукта да е вече изчерпан. В случай на изчерпана наличност ще се свържем с Вас","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"К-во:","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":" Добави в Количката","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Добави в Количката","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Сравни Продукта","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Сравни","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Добави в Любими","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Удължи гаранцията си","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Удължи гаранцията си","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+1 година: + 36€","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+2 години: + 46€","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Код","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":":","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"WD60EFPX","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Категория","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":":","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Твърди Дискове","depth":13,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Твърди Дискове","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Гаранция","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":":","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3 Години","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"РЕЙТИНГ","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Покажи Статистика","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Добави","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ТВОЯ РЕЙТИНГ","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Оцени","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"МНЕНИЯ","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Напиши","depth":12,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Улеснено Поръчване -","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"като въведете само телефон и име:","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"+359877878118","depth":12,"value":"+359877878118","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXTextField","text":"Lukáš Koválik","depth":12,"value":"Lukáš Koválik","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Съгласен съм с","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Общите условия","depth":13,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Общите условия","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ще Ви потърсим в рамките на работния ден. Внимание: При грешен телефонен номер, нямаме начин да се свържем с Вас.","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"КУПИ","depth":12,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Информираме Ви, че въпреки нашите усилия не можем да гарантираме, че публикуваната информация и снимки не съдържат неточности или грешки, които не могат да бъдат правно основание за претенции.","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"ОПИСАНИЕ","depth":12,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"ОПИСАНИЕ","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"ДЕТАЙЛИ","depth":12,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"ДЕТАЙЛИ","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"МНЕНИЯ","depth":12,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"МНЕНИЯ","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"ИИ ОПИСАНИЕ","depth":12,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"ИИ ОПИСАНИЕ","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Предназначен за","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Сториджи","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Капацитет, GB","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6 000 GB (6 TB)","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Външен/ вътрешен","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Internal","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Размер, inch","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.5\" (8.89 cm)","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Скорост, об/мин","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"5 400 rpm","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Интерфейс","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"SATA 6Gb/s","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Цвят","depth":15,"bounds":{"left":0.4861111,"top":0.0,"width":0.019444445,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"-","depth":15,"bounds":{"left":0.5729167,"top":0.0,"width":0.0020833334,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Приложение","depth":15,"bounds":{"left":0.4861111,"top":0.0,"width":0.050694443,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"за специализирана употреба","depth":15,"bounds":{"left":0.5729167,"top":0.0,"width":0.11666667,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Предназначен за","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Капацитет, GB","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Външен/ вътрешен","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Размер, inch","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Скорост, об/мин","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Интерфейс","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Цвят","depth":15,"bounds":{"left":0.4861111,"top":0.0,"width":0.019444445,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Приложение","depth":15,"bounds":{"left":0.4861111,"top":0.0,"width":0.050694443,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Сториджи","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6 000 GB (6 TB)","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Internal","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.5\" (8.89 cm)","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"5 400 rpm","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"SATA 6Gb/s","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"-","depth":15,"bounds":{"left":0.5729167,"top":0.0,"width":0.0020833334,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"за специализирана употреба","depth":15,"bounds":{"left":0.5729167,"top":0.0,"width":0.11666667,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Хром","depth":8,"bounds":{"left":0.06736111,"top":0.49444443,"width":0.9326389,"height":0.02},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"ПРОДУКТИ ОТ СЪЩАТА КАТЕГОРИЯ","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"ПРОДУКТИ ОТ СЪЩАТА КАТЕГОРИЯ","depth":10,"bounds":{"left":0.0,"top":0.53555554,"width":0.26319444,"height":0.034444444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"TRANSCEND","depth":16,"bounds":{"left":0.0,"top":0.6066667,"width":0.048611112,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Твърд диск, Transcend 1TB, 2.5\" Portable HDD, StoreJet H3, Purple, Anti-shock","depth":14,"bounds":{"left":0.0,"top":0.5888889,"width":0.1736111,"height":0.2777778},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Твърд диск, Transcend 1TB, 2.5\" Portable HDD, StoreJet H3, Purple, Anti-shock","depth":13,"bounds":{"left":0.0,"top":0.8844444,"width":0.20416667,"height":0.064444445},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Твърд диск, Transcend 1TB, 2.5\" Portable HDD, StoreJet H3, Purple, Anti-shock","depth":14,"bounds":{"left":0.0,"top":0.8844444,"width":0.18472221,"height":0.04222222},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Твърд диск, Transcend 1TB, 2.5\" Portable HDD, StoreJet H3, Purple, Anti-shock","depth":15,"bounds":{"left":0.0,"top":0.8844444,"width":0.18472221,"height":0.04222222},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€82","depth":14,"bounds":{"left":0.0,"top":0.96666664,"width":0.025694445,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"31","depth":15,"bounds":{"left":0.025694445,"top":0.9677778,"width":0.0125,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":14,"bounds":{"left":0.04236111,"top":0.9766667,"width":0.0034722222,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"160","depth":14,"bounds":{"left":0.045833334,"top":0.96666664,"width":0.028472222,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"98","depth":15,"bounds":{"left":0.07430556,"top":0.9677778,"width":0.013194445,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":14,"bounds":{"left":0.0875,"top":0.96666664,"width":0.02013889,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":13,"bounds":{"left":0.084027775,"top":0.5888889,"width":0.030555556,"height":0.037777778},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"LENOVO","depth":16,"bounds":{"left":0.1423611,"top":0.6066667,"width":0.03263889,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Твърд диск, Lenovo ThinkSystem 2.5\" 1.2TB 10K SAS 12Gb Hot Swap 512n HDD","depth":14,"bounds":{"left":0.15208334,"top":0.5888889,"width":0.1736111,"height":0.2777778},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Твърд диск, Lenovo ThinkSystem 2.5\" 1.2TB 10K SAS 12Gb Hot Swap 512n HDD","depth":13,"bounds":{"left":0.13680555,"top":0.8844444,"width":0.20416667,"height":0.064444445},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Твърд диск, Lenovo ThinkSystem 2.5\" 1.2TB 10K SAS 12Gb Hot Swap 512n HDD","depth":14,"bounds":{"left":0.13680555,"top":0.8844444,"width":0.19652778,"height":0.04222222},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Твърд диск, Lenovo ThinkSystem 2.5\" 1.2TB 10K SAS 12Gb Hot Swap 512n HDD","depth":15,"bounds":{"left":0.13680555,"top":0.8844444,"width":0.19652778,"height":0.04222222},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€269","depth":14,"bounds":{"left":0.225,"top":0.96666664,"width":0.034027778,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"76","depth":15,"bounds":{"left":0.25902778,"top":0.9677778,"width":0.0125,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":14,"bounds":{"left":0.27569443,"top":0.9766667,"width":0.0034722222,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"527","depth":14,"bounds":{"left":0.27916667,"top":0.96666664,"width":0.028472222,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"60","depth":15,"bounds":{"left":0.30763888,"top":0.9677778,"width":0.013194445,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":14,"bounds":{"left":0.32083333,"top":0.96666664,"width":0.02013889,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":13,"bounds":{"left":0.31736112,"top":0.5888889,"width":0.030555556,"height":0.037777778},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"APACER","depth":16,"bounds":{"left":0.37569445,"top":0.6066667,"width":0.03125,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Твърд диск, Apacer AC633, 5TB 2.5\" SATA HDD USB 3.2 Military-Grade Shockproof Portable Hard Drive","depth":14,"bounds":{"left":0.38541666,"top":0.5888889,"width":0.1736111,"height":0.2777778},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Твърд диск, Apacer AC633, 5TB 2.5\" SATA HDD USB 3.2 Military-Grade Shockproof Portable Hard Drive","depth":13,"bounds":{"left":0.37013888,"top":0.8844444,"width":0.20416667,"height":0.064444445},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Твърд диск, Apacer AC633, 5TB 2.5\" SATA HDD USB 3.2 Military-Grade Shockproof Portable Hard Drive","depth":14,"bounds":{"left":0.37013888,"top":0.8844444,"width":0.18819444,"height":0.06333333},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Твърд диск, Apacer AC633, 5TB 2.5\" SATA HDD USB 3.2 Military-Grade Shockproof Portable Hard Drive","depth":15,"bounds":{"left":0.37013888,"top":0.8844444,"width":0.18819444,"height":0.06333333},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€196","depth":14,"bounds":{"left":0.45833334,"top":0.96666664,"width":0.034027778,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"91","depth":15,"bounds":{"left":0.4923611,"top":0.9677778,"width":0.0125,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":14,"bounds":{"left":0.5090278,"top":0.9766667,"width":0.0034722222,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"385","depth":14,"bounds":{"left":0.5125,"top":0.96666664,"width":0.028472222,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"12","depth":15,"bounds":{"left":0.54097223,"top":0.9677778,"width":0.013194445,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":14,"bounds":{"left":0.5541667,"top":0.96666664,"width":0.02013889,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":13,"bounds":{"left":0.55069447,"top":0.5888889,"width":0.030555556,"height":0.037777778},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"TRANSCEND","depth":16,"bounds":{"left":0.6090278,"top":0.6066667,"width":0.048611112,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Твърд диск, Transcend 4TB, 2.5\" Portable HDD, StoreJet M3, Iron Gray","depth":14,"bounds":{"left":0.61875,"top":0.5888889,"width":0.1736111,"height":0.2777778},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Твърд диск, Transcend 4TB, 2.5\" Portable HDD, StoreJet M3, Iron Gray","depth":13,"bounds":{"left":0.60347223,"top":0.8844444,"width":0.20416667,"height":0.064444445},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Твърд диск, Transcend 4TB, 2.5\" Portable HDD, StoreJet M3, Iron Gray","depth":14,"bounds":{"left":0.60347223,"top":0.8844444,"width":0.18472221,"height":0.04222222},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Твърд диск, Transcend 4TB, 2.5\" Portable HDD, StoreJet M3, Iron Gray","depth":15,"bounds":{"left":0.60347223,"top":0.8844444,"width":0.18472221,"height":0.04222222},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€183","depth":14,"bounds":{"left":0.69166666,"top":0.96666664,"width":0.034027778,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"59","depth":15,"bounds":{"left":0.7256944,"top":0.9677778,"width":0.0125,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":14,"bounds":{"left":0.7423611,"top":0.9766667,"width":0.0034722222,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"359","depth":14,"bounds":{"left":0.74583334,"top":0.96666664,"width":0.028472222,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"07","depth":15,"bounds":{"left":0.7743056,"top":0.9677778,"width":0.013194445,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":14,"bounds":{"left":0.7875,"top":0.96666664,"width":0.02013889,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":13,"bounds":{"left":0.78402776,"top":0.5888889,"width":0.030555556,"height":0.037777778},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"FSAS","depth":16,"bounds":{"left":0.8423611,"top":0.6066667,"width":0.02013889,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Твърд диск, Fsas HD SATA 6G 4TB 7.2K HOT PL 3.5' BC","depth":14,"bounds":{"left":0.8520833,"top":0.5888889,"width":0.14791667,"height":0.2777778},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Твърд диск, Fsas HD SATA 6G 4TB 7.2K HOT PL 3.5' BC","depth":13,"bounds":{"left":0.8368056,"top":0.8844444,"width":0.16319442,"height":0.064444445},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Твърд диск, Fsas HD SATA 6G 4TB 7.2K HOT PL 3.5' BC","depth":14,"bounds":{"left":0.8368056,"top":0.8844444,"width":0.16319442,"height":0.04222222},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Твърд диск, Fsas HD SATA 6G 4TB 7.2K HOT PL 3.5' BC","depth":15,"bounds":{"left":0.8368056,"top":0.8844444,"width":0.16319442,"height":0.04222222},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€286","depth":14,"bounds":{"left":0.925,"top":0.96666664,"width":0.034027778,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"91","depth":15,"bounds":{"left":0.95902777,"top":0.9677778,"width":0.0125,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":14,"bounds":{"left":0.9756944,"top":0.9766667,"width":0.0034722222,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"561","depth":14,"bounds":{"left":0.9791667,"top":0.96666664,"width":0.020833313,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"15","depth":15,"bounds":{"left":1.0,"top":0.9677778,"width":-0.0076389313,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":14,"bounds":{"left":1.0,"top":0.96666664,"width":-0.020833373,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":13,"bounds":{"left":1.0,"top":0.5888889,"width":-0.017361164,"height":0.037777778},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"WESTERN DIGITAL","depth":16,"bounds":{"left":1.0,"top":0.6066667,"width":-0.07569444,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Твърд диск, Western Digital Red 6TB Plus ( 3.5\", 256MB, 5400 RPM, SATA 6Gb/s )","depth":14,"bounds":{"left":1.0,"top":0.5888889,"width":-0.085416675,"height":0.2777778},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Твърд диск, Western Digital Red 6TB Plus ( 3.5\", 256MB, 5400 RPM, SATA 6Gb/s )","depth":13,"bounds":{"left":1.0,"top":0.8844444,"width":-0.07013893,"height":0.064444445},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Твърд диск, Western Digital Red 6TB Plus ( 3.5\", 256MB, 5400 RPM, SATA 6Gb/s )","depth":14,"bounds":{"left":1.0,"top":0.8844444,"width":-0.07013893,"height":0.04222222},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Твърд диск, Western Digital Red 6TB Plus ( 3.5\", 256MB, 5400 RPM, SATA 6Gb/s )","depth":15,"bounds":{"left":1.0,"top":0.8844444,"width":-0.07013893,"height":0.04222222},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€239","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"76","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"468","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"93","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":13,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"1 of 3","depth":10,"bounds":{"left":0.56041664,"top":1.0,"width":0.013888889,"height":-0.03444445},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"•","depth":11,"bounds":{"left":0.56527776,"top":1.0,"width":0.004166667,"height":-0.04222226},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"2 of 3","depth":10,"bounds":{"left":0.58125,"top":1.0,"width":0.013888889,"height":-0.03444445},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"•","depth":11,"bounds":{"left":0.5861111,"top":1.0,"width":0.004166667,"height":-0.04222226},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"3 of 3","depth":10,"bounds":{"left":0.6020833,"top":1.0,"width":0.013888889,"height":-0.03444445},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"•","depth":11,"bounds":{"left":0.60694444,"top":1.0,"width":0.004166667,"height":-0.04222226},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"ПРОДУКТИ ОТ СЪЩИЯ ПРОИЗВОДИТЕЛ","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"ПРОДУКТИ ОТ СЪЩИЯ ПРОИЗВОДИТЕЛ","depth":10,"bounds":{"left":0.0,"top":1.0,"width":0.29027778,"height":-0.08333337},"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
4623512166180493368
|
7002876972398434498
|
click
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
0€ / 0 лв.
0€ / 0 лв.
Всички Категории
Всички Категории
Търси в Продуктите ...
Compares
0
Сравни
Wishlists
0
Любими
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 RPM, SATA 6Gb/s )
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 RPM, SATA 6Gb/s )
Начало
Начало
»
Магазин
Магазин
»
Компютри и Периферия
Компютри и Периферия
»
Компоненти
Компоненти
»
Твърди Дискове
Твърди Дискове
WESTERN DIGITAL
Цена
€239
76
/
468
93
лв
с ДДС
* ВЪНШЕН ДОСТАВЧИК - (1 ДО 3 ДНИ)
*
- Стоката е в склад на официалния вносител на марката за България. Времето за доставка е обикновено от 1 до 3 работни дни. Възможно е към момента на завършване на поръчката, продукта да е вече изчерпан. В случай на изчерпана наличност ще се свържем с Вас
К-во:
2
Добави в Количката
Добави в Количката
Сравни Продукта
Сравни
Добави в Любими
Удължи гаранцията си
Удължи гаранцията си
+1 година: + 36€
+2 години: + 46€
Код
:
WD60EFPX
Категория
:
Твърди Дискове
Твърди Дискове
Гаранция
:
3 Години
РЕЙТИНГ
Покажи Статистика
Добави
ТВОЯ РЕЙТИНГ
Оценете Продукта
Оцени
МНЕНИЯ
Напиши
Улеснено Поръчване -
като въведете само телефон и име:
[PHONE]
Lukáš Koválik
Съгласен съм с
Общите условия
Общите условия
Ще Ви потърсим в рамките на работния ден. Внимание: При грешен телефонен номер, нямаме начин да се свържем с Вас.
КУПИ
Информираме Ви, че въпреки нашите усилия не можем да гарантираме, че публикуваната информация и снимки не съдържат неточности или грешки, които не могат да бъдат правно основание за претенции.
ОПИСАНИЕ
ОПИСАНИЕ
ДЕТАЙЛИ
ДЕТАЙЛИ
МНЕНИЯ
МНЕНИЯ
ИИ ОПИСАНИЕ
ИИ ОПИСАНИЕ
Предназначен за
Сториджи
Капацитет, GB
6 000 GB (6 TB)
Външен/ вътрешен
Internal
Размер, inch
3.5" (8.89 cm)
Скорост, об/мин
5 400 rpm
Интерфейс
SATA 6Gb/s
Цвят
-
Приложение
за специализирана употреба
Предназначен за
Капацитет, GB
Външен/ вътрешен
Размер, inch
Скорост, об/мин
Интерфейс
Цвят
Приложение
Сториджи
6 000 GB (6 TB)
Internal
3.5" (8.89 cm)
5 400 rpm
SATA 6Gb/s
-
за специализирана употреба
Хром
ПРОДУКТИ ОТ СЪЩАТА КАТЕГОРИЯ
ПРОДУКТИ ОТ СЪЩАТА КАТЕГОРИЯ
TRANSCEND
Твърд диск, Transcend 1TB, 2.5" Portable HDD, StoreJet H3, Purple, Anti-shock
Твърд диск, Transcend 1TB, 2.5" Portable HDD, StoreJet H3, Purple, Anti-shock
Твърд диск, Transcend 1TB, 2.5" Portable HDD, StoreJet H3, Purple, Anti-shock
Твърд диск, Transcend 1TB, 2.5" Portable HDD, StoreJet H3, Purple, Anti-shock
€82
31
/
160
98
лв
Оценете Продукта
LENOVO
Твърд диск, Lenovo ThinkSystem 2.5" 1.2TB 10K SAS 12Gb Hot Swap 512n HDD
Твърд диск, Lenovo ThinkSystem 2.5" 1.2TB 10K SAS 12Gb Hot Swap 512n HDD
Твърд диск, Lenovo ThinkSystem 2.5" 1.2TB 10K SAS 12Gb Hot Swap 512n HDD
Твърд диск, Lenovo ThinkSystem 2.5" 1.2TB 10K SAS 12Gb Hot Swap 512n HDD
€269
76
/
527
60
лв
Оценете Продукта
APACER
Твърд диск, Apacer AC633, 5TB 2.5" SATA HDD USB 3.2 Military-Grade Shockproof Portable Hard Drive
Твърд диск, Apacer AC633, 5TB 2.5" SATA HDD USB 3.2 Military-Grade Shockproof Portable Hard Drive
Твърд диск, Apacer AC633, 5TB 2.5" SATA HDD USB 3.2 Military-Grade Shockproof Portable Hard Drive
Твърд диск, Apacer AC633, 5TB 2.5" SATA HDD USB 3.2 Military-Grade Shockproof Portable Hard Drive
€196
91
/
385
12
лв
Оценете Продукта
TRANSCEND
Твърд диск, Transcend 4TB, 2.5" Portable HDD, StoreJet M3, Iron Gray
Твърд диск, Transcend 4TB, 2.5" Portable HDD, StoreJet M3, Iron Gray
Твърд диск, Transcend 4TB, 2.5" Portable HDD, StoreJet M3, Iron Gray
Твърд диск, Transcend 4TB, 2.5" Portable HDD, StoreJet M3, Iron Gray
€183
59
/
359
07
лв
Оценете Продукта
FSAS
Твърд диск, Fsas HD SATA 6G 4TB 7.2K HOT PL 3.5' BC
Твърд диск, Fsas HD SATA 6G 4TB 7.2K HOT PL 3.5' BC
Твърд диск, Fsas HD SATA 6G 4TB 7.2K HOT PL 3.5' BC
Твърд диск, Fsas HD SATA 6G 4TB 7.2K HOT PL 3.5' BC
€286
91
/
561
15
лв
Оценете Продукта
WESTERN DIGITAL
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 RPM, SATA 6Gb/s )
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 RPM, SATA 6Gb/s )
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 RPM, SATA 6Gb/s )
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 RPM, SATA 6Gb/s )
€239
76
/
468
93
лв
Оценете Продукта
1 of 3
•
1
2 of 3
•
2
3 of 3
•
3
ПРОДУКТИ ОТ СЪЩИЯ ПРОИЗВОДИТЕЛ
ПРОДУКТИ ОТ СЪЩИЯ ПРОИЗВОДИТЕЛ...
|
NULL
|
|
7600
|
142
|
12
|
2026-04-13T16:08:25.802873+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096505802_m1.jpg...
|
Firefox
|
Твърд диск, Western Digital Red 6TB Plus ( 3.5" Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 — Personal...
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
479.52€ / 937.86
479.52€ / 937.86
Всички Категории
Всички Категории
Търси в Продуктите ...
Compares
0
Сравни
Wishlists
0
Любими
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 RPM, SATA 6Gb/s )
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 RPM, SATA 6Gb/s )
Начало
Начало
»
Магазин
Магазин
»
Компютри и Периферия
Компютри и Периферия
»
Компоненти
Компоненти
»
Твърди Дискове
Твърди Дискове
WESTERN DIGITAL
Цена
€239
76
/
468
93
лв
с ДДС
* ВЪНШЕН ДОСТАВЧИК - (1 ДО 3 ДНИ)
*
- Стоката е в склад на официалния вносител на марката за България. Времето за доставка е обикновено от 1 до 3 работни дни. Възможно е към момента на завършване на поръчката, продукта да е вече изчерпан. В случай на изчерпана наличност ще се свържем с Вас
К-во:
2
Добави в Количката
Добави в Количката
Сравни Продукта
Сравни
Добави в Любими
Удължи гаранцията си
Удължи гаранцията си
+1 година: + 36€
+2 години: + 46€
Код
:
WD60EFPX
Категория
:
Твърди Дискове
Твърди Дискове
Гаранция
:
3 Години
РЕЙТИНГ
Покажи Статистика
Добави
ТВОЯ РЕЙТИНГ
Оценете Продукта
Оцени
МНЕНИЯ
Напиши
Улеснено Поръчване -
като въведете само телефон и име:
[PHONE]
Lukáš Koválik
Съгласен съм с
Общите условия
Общите условия
Ще Ви потърсим в рамките на работния ден. Внимание: При грешен телефонен номер, нямаме начин да се свържем с Вас.
КУПИ
Информираме Ви, че въпреки нашите усилия не можем да гарантираме, че публикуваната информация и снимки не съдържат неточности или грешки, които не могат да бъдат правно основание за претенции.
ОПИСАНИЕ
ОПИСАНИЕ
ДЕТАЙЛИ
ДЕТАЙЛИ
МНЕНИЯ
МНЕНИЯ
ИИ ОПИСАНИЕ
ИИ ОПИСАНИЕ
Предназначен за
Сториджи
Капацитет, GB
6 000 GB (6 TB)
Външен/ вътрешен
Internal
Размер, inch
3.5" (8.89 cm)
Скорост, об/мин
5 400 rpm
Интерфейс
SATA 6Gb/s
Цвят
-
Приложение
за специализирана употреба
Предназначен за
Капацитет, GB
Външен/ вътрешен
Размер, inch
Скорост, об/мин
Интерфейс
Цвят
Приложение
Сториджи
6 000 GB (6 TB)
Internal
3.5" (8.89 cm)
5 400 rpm
SATA 6Gb/s
-
за специализирана употреба
Хром
ПРОДУКТИ ОТ СЪЩАТА КАТЕГОРИЯ
ПРОДУКТИ ОТ СЪЩАТА КАТЕГОРИЯ
HPE
Твърд диск, HPE 1.2TB SAS 10K SFF SC DS HDD
Твърд диск, HPE 1.2TB SAS 10K SFF SC DS HDD
Твърд диск, HPE 1.2TB SAS 10K SFF SC DS HDD
Твърд диск, HPE 1.2TB SAS 10K SFF SC DS HDD
€271
92
/
531
83
лв
Оценете Продукта
SEAGATE
Твърд диск, Seagate Exos 7E10 8TB ( 3.5", 256MB, 7200 RPM, SATA 6GB/s )
Твърд диск, Seagate Exos 7E10 8TB ( 3.5", 256MB, 7200 RPM, SATA 6GB/s )
Твърд диск, Seagate Exos 7E10 8TB ( 3.5", 256MB, 7200 RPM, SATA 6GB/s )
Твърд диск, Seagate Exos 7E10 8TB ( 3.5", 256MB, 7200 RPM, SATA 6GB/s )
€402
60
/
787
42
лв
Оценете Продукта
TRANSCEND
Твърд диск, Transcend 2TB, 2.5" Portable HDD, StoreJet M3, Military Green, Slim
Твърд диск, Transcend 2TB, 2.5" Portable HDD, StoreJet M3, Military Green, Slim
Твърд диск, Transcend 2TB, 2.5" Portable HDD, StoreJet M3, Military Green, Slim
Твърд диск, Transcend 2TB, 2.5" Portable HDD, StoreJet M3, Military Green, Slim
€112
91
/
220
83
лв
Оценете Продукта
WESTERN DIGITAL
HDD Server WD Ultrastar DC HC555 12TB 512e SE, 3.5", 512MB, 7200 RPM, SATA, NP3, SKU: 0B48720
HDD Server WD Ultrastar DC HC555 12TB 512e SE, 3.5", 512MB, 7200 RPM, SATA, NP3, SKU: 0B48720
HDD Server WD Ultrastar DC HC555 12TB 512e SE, 3.5", 512MB, 7200 RPM, SATA, NP3, SKU: 0B48720
HDD Server WD Ultrastar DC HC555 12TB 512e SE, 3.5", 512MB, 7200 RPM, SATA, NP3, SKU: 0B48720
€395
21
/
772
96
лв
Оценете Продукта
WD
Хард диск Western Digital Purple Pro Surveillance 12 TB - WD122PURP
Хард диск Western Digital Purple Pro Surveillance 12 TB - WD122PURP
Хард диск Western Digital Purple Pro Surveillance 12 TB - WD122PURP...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Inbox - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Shameless • HBO Max","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Shameless • HBO Max","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Mute tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Machines - Tailscale","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Machines - Tailscale","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe Dashboard","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe Dashboard","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Твърд диск, Western Digital Red 6TB Plus ( 3.5\", 256MB, 5400","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Твърд диск, Western Digital Red 6TB Plus ( 3.5\", 256MB, 5400","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"google maps timeline export - Google Search","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"google maps timeline export - Google Search","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New Tab","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"0886 177 222","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0886 177 222","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"info@xtreme.bg","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"info@xtreme.bg","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"facebook","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"twitter","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"instagram","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"xtreme","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"НАЧАЛО","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"НАЧАЛО","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"МАГАЗИН","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"МАГАЗИН","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"БЛОГ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"БЛОГ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"КОНТАКТИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"КОНТАКТИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"РЕКЛАМАЦИИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"РЕКЛАМАЦИИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Lukáš Koválik","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":" 479.52€ / 937.86","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"479.52€ / 937.86","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Всички Категории","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Всички Категории","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Търси в Продуктите ...","depth":11,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Compares","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Сравни","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Wishlists","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Любими","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Твърд диск, Western Digital Red 6TB Plus ( 3.5\", 256MB, 5400 RPM, SATA 6Gb/s )","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Твърд диск, Western Digital Red 6TB Plus ( 3.5\", 256MB, 5400 RPM, SATA 6Gb/s )","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Начало","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Начало","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"»","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Магазин","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Магазин","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"»","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Компютри и Периферия","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Компютри и Периферия","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"»","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Компоненти","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Компоненти","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"»","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Твърди Дискове","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Твърди Дискове","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"WESTERN DIGITAL","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Цена","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€239","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"76","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"468","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"93","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"с ДДС","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"* ВЪНШЕН ДОСТАВЧИК - (1 ДО 3 ДНИ)","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"*","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"- Стоката е в склад на официалния вносител на марката за България. Времето за доставка е обикновено от 1 до 3 работни дни. Възможно е към момента на завършване на поръчката, продукта да е вече изчерпан. В случай на изчерпана наличност ще се свържем с Вас","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"К-во:","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":" Добави в Количката","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Добави в Количката","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Сравни Продукта","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Сравни","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Добави в Любими","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Удължи гаранцията си","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Удължи гаранцията си","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+1 година: + 36€","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+2 години: + 46€","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Код","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":":","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"WD60EFPX","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Категория","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":":","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Твърди Дискове","depth":13,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Твърди Дискове","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Гаранция","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":":","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3 Години","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"РЕЙТИНГ","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Покажи Статистика","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Добави","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ТВОЯ РЕЙТИНГ","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Оцени","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"МНЕНИЯ","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Напиши","depth":12,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Улеснено Поръчване -","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"като въведете само телефон и име:","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"+359877878118","depth":12,"value":"+359877878118","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXTextField","text":"Lukáš Koválik","depth":12,"value":"Lukáš Koválik","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Съгласен съм с","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Общите условия","depth":13,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Общите условия","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ще Ви потърсим в рамките на работния ден. Внимание: При грешен телефонен номер, нямаме начин да се свържем с Вас.","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"КУПИ","depth":12,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Информираме Ви, че въпреки нашите усилия не можем да гарантираме, че публикуваната информация и снимки не съдържат неточности или грешки, които не могат да бъдат правно основание за претенции.","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"ОПИСАНИЕ","depth":12,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"ОПИСАНИЕ","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"ДЕТАЙЛИ","depth":12,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"ДЕТАЙЛИ","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"МНЕНИЯ","depth":12,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"МНЕНИЯ","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"ИИ ОПИСАНИЕ","depth":12,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"ИИ ОПИСАНИЕ","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Предназначен за","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Сториджи","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Капацитет, GB","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6 000 GB (6 TB)","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Външен/ вътрешен","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Internal","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Размер, inch","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.5\" (8.89 cm)","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Скорост, об/мин","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"5 400 rpm","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Интерфейс","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"SATA 6Gb/s","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Цвят","depth":15,"bounds":{"left":0.4861111,"top":0.0,"width":0.019444445,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"-","depth":15,"bounds":{"left":0.5729167,"top":0.0,"width":0.0020833334,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Приложение","depth":15,"bounds":{"left":0.4861111,"top":0.0,"width":0.050694443,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"за специализирана употреба","depth":15,"bounds":{"left":0.5729167,"top":0.0,"width":0.11666667,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Предназначен за","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Капацитет, GB","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Външен/ вътрешен","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Размер, inch","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Скорост, об/мин","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Интерфейс","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Цвят","depth":15,"bounds":{"left":0.4861111,"top":0.0,"width":0.019444445,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Приложение","depth":15,"bounds":{"left":0.4861111,"top":0.0,"width":0.050694443,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Сториджи","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6 000 GB (6 TB)","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Internal","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.5\" (8.89 cm)","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"5 400 rpm","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"SATA 6Gb/s","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"-","depth":15,"bounds":{"left":0.5729167,"top":0.0,"width":0.0020833334,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"за специализирана употреба","depth":15,"bounds":{"left":0.5729167,"top":0.0,"width":0.11666667,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Хром","depth":8,"bounds":{"left":0.06736111,"top":0.49444443,"width":0.9326389,"height":0.02},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"ПРОДУКТИ ОТ СЪЩАТА КАТЕГОРИЯ","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"ПРОДУКТИ ОТ СЪЩАТА КАТЕГОРИЯ","depth":10,"bounds":{"left":0.0,"top":0.53555554,"width":0.26319444,"height":0.034444444},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"HPE","depth":16,"bounds":{"left":0.0,"top":0.6066667,"width":0.016666668,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Твърд диск, HPE 1.2TB SAS 10K SFF SC DS HDD","depth":14,"bounds":{"left":0.0,"top":0.5888889,"width":0.1736111,"height":0.2777778},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Твърд диск, HPE 1.2TB SAS 10K SFF SC DS HDD","depth":13,"bounds":{"left":0.0,"top":0.8844444,"width":0.20416667,"height":0.064444445},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Твърд диск, HPE 1.2TB SAS 10K SFF SC DS HDD","depth":14,"bounds":{"left":0.0,"top":0.8844444,"width":0.19305556,"height":0.04222222},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Твърд диск, HPE 1.2TB SAS 10K SFF SC DS HDD","depth":15,"bounds":{"left":0.0,"top":0.8844444,"width":0.19305556,"height":0.04222222},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€271","depth":14,"bounds":{"left":0.0,"top":0.96666664,"width":0.034027778,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"92","depth":15,"bounds":{"left":0.025694445,"top":0.9677778,"width":0.0125,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":14,"bounds":{"left":0.04236111,"top":0.9766667,"width":0.0034722222,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"531","depth":14,"bounds":{"left":0.045833334,"top":0.96666664,"width":0.028472222,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"83","depth":15,"bounds":{"left":0.07430556,"top":0.9677778,"width":0.013194445,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":14,"bounds":{"left":0.0875,"top":0.96666664,"width":0.02013889,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":13,"bounds":{"left":0.084027775,"top":0.5888889,"width":0.030555556,"height":0.037777778},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"SEAGATE","depth":16,"bounds":{"left":0.1423611,"top":0.6066667,"width":0.036111113,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Твърд диск, Seagate Exos 7E10 8TB ( 3.5\", 256MB, 7200 RPM, SATA 6GB/s )","depth":14,"bounds":{"left":0.15208334,"top":0.5888889,"width":0.1736111,"height":0.2777778},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Твърд диск, Seagate Exos 7E10 8TB ( 3.5\", 256MB, 7200 RPM, SATA 6GB/s )","depth":13,"bounds":{"left":0.13680555,"top":0.8844444,"width":0.20416667,"height":0.064444445},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Твърд диск, Seagate Exos 7E10 8TB ( 3.5\", 256MB, 7200 RPM, SATA 6GB/s )","depth":14,"bounds":{"left":0.13680555,"top":0.8844444,"width":0.18958333,"height":0.04222222},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Твърд диск, Seagate Exos 7E10 8TB ( 3.5\", 256MB, 7200 RPM, SATA 6GB/s )","depth":15,"bounds":{"left":0.13680555,"top":0.8844444,"width":0.18958333,"height":0.04222222},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€402","depth":14,"bounds":{"left":0.225,"top":0.96666664,"width":0.034027778,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"60","depth":15,"bounds":{"left":0.25902778,"top":0.9677778,"width":0.0125,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":14,"bounds":{"left":0.27569443,"top":0.9766667,"width":0.0034722222,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"787","depth":14,"bounds":{"left":0.27916667,"top":0.96666664,"width":0.028472222,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"42","depth":15,"bounds":{"left":0.30763888,"top":0.9677778,"width":0.013194445,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":14,"bounds":{"left":0.32083333,"top":0.96666664,"width":0.02013889,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":13,"bounds":{"left":0.31736112,"top":0.5888889,"width":0.030555556,"height":0.037777778},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"TRANSCEND","depth":16,"bounds":{"left":0.37569445,"top":0.6066667,"width":0.048611112,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Твърд диск, Transcend 2TB, 2.5\" Portable HDD, StoreJet M3, Military Green, Slim","depth":14,"bounds":{"left":0.38541666,"top":0.5888889,"width":0.1736111,"height":0.2777778},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Твърд диск, Transcend 2TB, 2.5\" Portable HDD, StoreJet M3, Military Green, Slim","depth":13,"bounds":{"left":0.37013888,"top":0.8844444,"width":0.20416667,"height":0.064444445},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Твърд диск, Transcend 2TB, 2.5\" Portable HDD, StoreJet M3, Military Green, Slim","depth":14,"bounds":{"left":0.37013888,"top":0.8844444,"width":0.18472221,"height":0.04222222},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Твърд диск, Transcend 2TB, 2.5\" Portable HDD, StoreJet M3, Military Green, Slim","depth":15,"bounds":{"left":0.37013888,"top":0.8844444,"width":0.18472221,"height":0.04222222},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€112","depth":14,"bounds":{"left":0.45833334,"top":0.96666664,"width":0.034027778,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"91","depth":15,"bounds":{"left":0.4923611,"top":0.9677778,"width":0.0125,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":14,"bounds":{"left":0.5090278,"top":0.9766667,"width":0.0034722222,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"220","depth":14,"bounds":{"left":0.5125,"top":0.96666664,"width":0.028472222,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"83","depth":15,"bounds":{"left":0.54097223,"top":0.9677778,"width":0.013194445,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":14,"bounds":{"left":0.5541667,"top":0.96666664,"width":0.02013889,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":13,"bounds":{"left":0.55069447,"top":0.5888889,"width":0.030555556,"height":0.037777778},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"WESTERN DIGITAL","depth":16,"bounds":{"left":0.6090278,"top":0.6066667,"width":0.07152778,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"HDD Server WD Ultrastar DC HC555 12TB 512e SE, 3.5\", 512MB, 7200 RPM, SATA, NP3, SKU: 0B48720","depth":14,"bounds":{"left":0.61875,"top":0.5888889,"width":0.1736111,"height":0.2777778},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"HDD Server WD Ultrastar DC HC555 12TB 512e SE, 3.5\", 512MB, 7200 RPM, SATA, NP3, SKU: 0B48720","depth":13,"bounds":{"left":0.60347223,"top":0.8844444,"width":0.20416667,"height":0.064444445},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"HDD Server WD Ultrastar DC HC555 12TB 512e SE, 3.5\", 512MB, 7200 RPM, SATA, NP3, SKU: 0B48720","depth":14,"bounds":{"left":0.60347223,"top":0.8844444,"width":0.19652778,"height":0.06333333},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"HDD Server WD Ultrastar DC HC555 12TB 512e SE, 3.5\", 512MB, 7200 RPM, SATA, NP3, SKU: 0B48720","depth":15,"bounds":{"left":0.60347223,"top":0.8844444,"width":0.19652778,"height":0.06333333},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€395","depth":14,"bounds":{"left":0.69166666,"top":0.96666664,"width":0.034027778,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21","depth":15,"bounds":{"left":0.7256944,"top":0.9677778,"width":0.0125,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":14,"bounds":{"left":0.7423611,"top":0.9766667,"width":0.0034722222,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"772","depth":14,"bounds":{"left":0.74583334,"top":0.96666664,"width":0.028472222,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"96","depth":15,"bounds":{"left":0.7743056,"top":0.9677778,"width":0.013194445,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":14,"bounds":{"left":0.7875,"top":0.96666664,"width":0.02013889,"height":0.032222223},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":13,"bounds":{"left":0.78402776,"top":0.5888889,"width":0.030555556,"height":0.037777778},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"WD","depth":16,"bounds":{"left":0.8423611,"top":0.6066667,"width":0.013194445,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Хард диск Western Digital Purple Pro Surveillance 12 TB - WD122PURP","depth":14,"bounds":{"left":0.8520833,"top":0.5888889,"width":0.14791667,"height":0.2777778},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Хард диск Western Digital Purple Pro Surveillance 12 TB - WD122PURP","depth":13,"bounds":{"left":0.8368056,"top":0.8844444,"width":0.16319442,"height":0.064444445},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"Хард диск Western Digital Purple Pro Surveillance 12 TB - WD122PURP","depth":14,"bounds":{"left":0.8368056,"top":0.8844444,"width":0.16319442,"height":0.04222222},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false}]...
|
9130247775695809240
|
-3238888839944613182
|
click
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Mute tab
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
479.52€ / 937.86
479.52€ / 937.86
Всички Категории
Всички Категории
Търси в Продуктите ...
Compares
0
Сравни
Wishlists
0
Любими
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 RPM, SATA 6Gb/s )
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 RPM, SATA 6Gb/s )
Начало
Начало
»
Магазин
Магазин
»
Компютри и Периферия
Компютри и Периферия
»
Компоненти
Компоненти
»
Твърди Дискове
Твърди Дискове
WESTERN DIGITAL
Цена
€239
76
/
468
93
лв
с ДДС
* ВЪНШЕН ДОСТАВЧИК - (1 ДО 3 ДНИ)
*
- Стоката е в склад на официалния вносител на марката за България. Времето за доставка е обикновено от 1 до 3 работни дни. Възможно е към момента на завършване на поръчката, продукта да е вече изчерпан. В случай на изчерпана наличност ще се свържем с Вас
К-во:
2
Добави в Количката
Добави в Количката
Сравни Продукта
Сравни
Добави в Любими
Удължи гаранцията си
Удължи гаранцията си
+1 година: + 36€
+2 години: + 46€
Код
:
WD60EFPX
Категория
:
Твърди Дискове
Твърди Дискове
Гаранция
:
3 Години
РЕЙТИНГ
Покажи Статистика
Добави
ТВОЯ РЕЙТИНГ
Оценете Продукта
Оцени
МНЕНИЯ
Напиши
Улеснено Поръчване -
като въведете само телефон и име:
[PHONE]
Lukáš Koválik
Съгласен съм с
Общите условия
Общите условия
Ще Ви потърсим в рамките на работния ден. Внимание: При грешен телефонен номер, нямаме начин да се свържем с Вас.
КУПИ
Информираме Ви, че въпреки нашите усилия не можем да гарантираме, че публикуваната информация и снимки не съдържат неточности или грешки, които не могат да бъдат правно основание за претенции.
ОПИСАНИЕ
ОПИСАНИЕ
ДЕТАЙЛИ
ДЕТАЙЛИ
МНЕНИЯ
МНЕНИЯ
ИИ ОПИСАНИЕ
ИИ ОПИСАНИЕ
Предназначен за
Сториджи
Капацитет, GB
6 000 GB (6 TB)
Външен/ вътрешен
Internal
Размер, inch
3.5" (8.89 cm)
Скорост, об/мин
5 400 rpm
Интерфейс
SATA 6Gb/s
Цвят
-
Приложение
за специализирана употреба
Предназначен за
Капацитет, GB
Външен/ вътрешен
Размер, inch
Скорост, об/мин
Интерфейс
Цвят
Приложение
Сториджи
6 000 GB (6 TB)
Internal
3.5" (8.89 cm)
5 400 rpm
SATA 6Gb/s
-
за специализирана употреба
Хром
ПРОДУКТИ ОТ СЪЩАТА КАТЕГОРИЯ
ПРОДУКТИ ОТ СЪЩАТА КАТЕГОРИЯ
HPE
Твърд диск, HPE 1.2TB SAS 10K SFF SC DS HDD
Твърд диск, HPE 1.2TB SAS 10K SFF SC DS HDD
Твърд диск, HPE 1.2TB SAS 10K SFF SC DS HDD
Твърд диск, HPE 1.2TB SAS 10K SFF SC DS HDD
€271
92
/
531
83
лв
Оценете Продукта
SEAGATE
Твърд диск, Seagate Exos 7E10 8TB ( 3.5", 256MB, 7200 RPM, SATA 6GB/s )
Твърд диск, Seagate Exos 7E10 8TB ( 3.5", 256MB, 7200 RPM, SATA 6GB/s )
Твърд диск, Seagate Exos 7E10 8TB ( 3.5", 256MB, 7200 RPM, SATA 6GB/s )
Твърд диск, Seagate Exos 7E10 8TB ( 3.5", 256MB, 7200 RPM, SATA 6GB/s )
€402
60
/
787
42
лв
Оценете Продукта
TRANSCEND
Твърд диск, Transcend 2TB, 2.5" Portable HDD, StoreJet M3, Military Green, Slim
Твърд диск, Transcend 2TB, 2.5" Portable HDD, StoreJet M3, Military Green, Slim
Твърд диск, Transcend 2TB, 2.5" Portable HDD, StoreJet M3, Military Green, Slim
Твърд диск, Transcend 2TB, 2.5" Portable HDD, StoreJet M3, Military Green, Slim
€112
91
/
220
83
лв
Оценете Продукта
WESTERN DIGITAL
HDD Server WD Ultrastar DC HC555 12TB 512e SE, 3.5", 512MB, 7200 RPM, SATA, NP3, SKU: 0B48720
HDD Server WD Ultrastar DC HC555 12TB 512e SE, 3.5", 512MB, 7200 RPM, SATA, NP3, SKU: 0B48720
HDD Server WD Ultrastar DC HC555 12TB 512e SE, 3.5", 512MB, 7200 RPM, SATA, NP3, SKU: 0B48720
HDD Server WD Ultrastar DC HC555 12TB 512e SE, 3.5", 512MB, 7200 RPM, SATA, NP3, SKU: 0B48720
€395
21
/
772
96
лв
Оценете Продукта
WD
Хард диск Western Digital Purple Pro Surveillance 12 TB - WD122PURP
Хард диск Western Digital Purple Pro Surveillance 12 TB - WD122PURP
Хард диск Western Digital Purple Pro Surveillance 12 TB - WD122PURP...
|
NULL
|
|
7601
|
142
|
13
|
2026-04-13T16:08:37.060734+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096517060_m1.jpg...
|
Firefox
|
Твърд диск, Western Digital Red 6TB Plus ( 3.5" Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 — Personal...
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
479.52€ / 937.86
479.52€ / 937.86
Всички Категории
Всички Категории
Търси в Продуктите ...
Compares
0
Сравни
Wishlists
0
Любими
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 RPM, SATA 6Gb/s )
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 RPM, SATA 6Gb/s )
Начало
Начало
»
Магазин
Магазин
»
Компютри и Периферия
Компютри и Периферия
»
Компоненти
Компоненти
»
Твърди Дискове
Твърди Дискове
WESTERN DIGITAL
Цена
€239
76
/
468
93
лв
с ДДС
* ВЪНШЕН ДОСТАВЧИК - (1 ДО 3 ДНИ)
*
- Стоката е в склад на официалния вносител на марката за България. Времето за доставка е обикновено от 1 до 3 работни дни. Възможно е към момента на завършване на поръчката, продукта да е вече изчерпан. В случай на изчерпана наличност ще се свържем с Вас
К-во:
2
Добави в Количката
Добави в Количката
Сравни Продукта
Сравни
Добави в Любими
Удължи гаранцията си
Удължи гаранцията си
+1 година: + 36€
+2 години: + 46€
Код
:
WD60EFPX
Категория
:
Твърди Дискове
Твърди Дискове
Гаранция
:
3 Години
РЕЙТИНГ
Покажи Статистика
Добави
ТВОЯ РЕЙТИНГ
Оценете Продукта
Оцени
МНЕНИЯ
Напиши
Улеснено Поръчване -
като въведете само телефон и име:
[PHONE]
Lukáš Koválik
Съгласен съм с
Общите условия
Общите условия
Ще Ви потърсим в рамките на работния ден. Внимание: При грешен телефонен номер, нямаме начин да се свържем с Вас.
КУПИ
Информираме Ви, че въпреки нашите усилия не можем да гарантираме, че публикуваната информация и снимки не съдържат неточности или грешки, които не могат да бъдат правно основание за претенции.
ОПИСАНИЕ
ОПИСАНИЕ
ДЕТАЙЛИ
ДЕТАЙЛИ
МНЕНИЯ
МНЕНИЯ
ИИ ОПИСАНИЕ
ИИ ОПИСАНИЕ
Предназначен за
Сториджи
Капацитет, GB
6 000 GB (6 TB)
Външен/ вътрешен
Internal
Размер, inch
3.5" (8.89 cm)
Скорост, об/мин
5 400 rpm
Интерфейс
SATA 6Gb/s
Цвят
-
Приложение
за специализирана употреба
Предназначен за
Капацитет, GB
Външен/ вътрешен
Размер, inch
Скорост, об/мин
Интерфейс
Цвят
Приложение
Сториджи
6 000 GB (6 TB)
Internal
3.5" (8.89 cm)
5 400 rpm
SATA 6Gb/s
-
за специализирана употреба
Хром
ПРОДУКТИ ОТ СЪЩАТА КАТЕГОРИЯ...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Inbox - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Shameless • HBO Max","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Shameless • HBO Max","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Machines - Tailscale","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Machines - Tailscale","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe Dashboard","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe Dashboard","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Твърд диск, Western Digital Red 6TB Plus ( 3.5\", 256MB, 5400","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Твърд диск, Western Digital Red 6TB Plus ( 3.5\", 256MB, 5400","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"google maps timeline export - Google Search","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"google maps timeline export - Google Search","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New Tab","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"0886 177 222","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0886 177 222","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"info@xtreme.bg","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"info@xtreme.bg","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"facebook","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"twitter","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"instagram","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"xtreme","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"НАЧАЛО","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"НАЧАЛО","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"МАГАЗИН","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"МАГАЗИН","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"БЛОГ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"БЛОГ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"КОНТАКТИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"КОНТАКТИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"РЕКЛАМАЦИИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"РЕКЛАМАЦИИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Lukáš Koválik","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":" 479.52€ / 937.86","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":true,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"479.52€ / 937.86","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Всички Категории","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Всички Категории","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Търси в Продуктите ...","depth":11,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Compares","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Сравни","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Wishlists","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Любими","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Твърд диск, Western Digital Red 6TB Plus ( 3.5\", 256MB, 5400 RPM, SATA 6Gb/s )","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Твърд диск, Western Digital Red 6TB Plus ( 3.5\", 256MB, 5400 RPM, SATA 6Gb/s )","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Начало","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Начало","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"»","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Магазин","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Магазин","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"»","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Компютри и Периферия","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Компютри и Периферия","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"»","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Компоненти","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Компоненти","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"»","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Твърди Дискове","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Твърди Дискове","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"WESTERN DIGITAL","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Цена","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€239","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"76","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"468","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"93","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"с ДДС","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"* ВЪНШЕН ДОСТАВЧИК - (1 ДО 3 ДНИ)","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"*","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"- Стоката е в склад на официалния вносител на марката за България. Времето за доставка е обикновено от 1 до 3 работни дни. Възможно е към момента на завършване на поръчката, продукта да е вече изчерпан. В случай на изчерпана наличност ще се свържем с Вас","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"К-во:","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":" Добави в Количката","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Добави в Количката","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Сравни Продукта","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Сравни","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Добави в Любими","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Удължи гаранцията си","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Удължи гаранцията си","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+1 година: + 36€","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+2 години: + 46€","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Код","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":":","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"WD60EFPX","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Категория","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":":","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Твърди Дискове","depth":13,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Твърди Дискове","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Гаранция","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":":","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3 Години","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"РЕЙТИНГ","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Покажи Статистика","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Добави","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ТВОЯ РЕЙТИНГ","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Оценете Продукта","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Оцени","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"МНЕНИЯ","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Напиши","depth":12,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Улеснено Поръчване -","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"като въведете само телефон и име:","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"+359877878118","depth":12,"value":"+359877878118","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXTextField","text":"Lukáš Koválik","depth":12,"value":"Lukáš Koválik","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Съгласен съм с","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Общите условия","depth":13,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Общите условия","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ще Ви потърсим в рамките на работния ден. Внимание: При грешен телефонен номер, нямаме начин да се свържем с Вас.","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"КУПИ","depth":12,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Информираме Ви, че въпреки нашите усилия не можем да гарантираме, че публикуваната информация и снимки не съдържат неточности или грешки, които не могат да бъдат правно основание за претенции.","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"ОПИСАНИЕ","depth":12,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"ОПИСАНИЕ","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"ДЕТАЙЛИ","depth":12,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"ДЕТАЙЛИ","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"МНЕНИЯ","depth":12,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"МНЕНИЯ","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"ИИ ОПИСАНИЕ","depth":12,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"ИИ ОПИСАНИЕ","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Предназначен за","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Сториджи","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Капацитет, GB","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6 000 GB (6 TB)","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Външен/ вътрешен","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Internal","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Размер, inch","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.5\" (8.89 cm)","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Скорост, об/мин","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"5 400 rpm","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Интерфейс","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"SATA 6Gb/s","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Цвят","depth":15,"bounds":{"left":0.4861111,"top":0.0,"width":0.019444445,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"-","depth":15,"bounds":{"left":0.5729167,"top":0.0,"width":0.0020833334,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Приложение","depth":15,"bounds":{"left":0.4861111,"top":0.0,"width":0.050694443,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"за специализирана употреба","depth":15,"bounds":{"left":0.5729167,"top":0.0,"width":0.11666667,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Предназначен за","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Капацитет, GB","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Външен/ вътрешен","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Размер, inch","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Скорост, об/мин","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Интерфейс","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Цвят","depth":15,"bounds":{"left":0.4861111,"top":0.0,"width":0.019444445,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Приложение","depth":15,"bounds":{"left":0.4861111,"top":0.0,"width":0.050694443,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Сториджи","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"6 000 GB (6 TB)","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Internal","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.5\" (8.89 cm)","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"5 400 rpm","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"SATA 6Gb/s","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"-","depth":15,"bounds":{"left":0.5729167,"top":0.0,"width":0.0020833334,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"за специализирана употреба","depth":15,"bounds":{"left":0.5729167,"top":0.0,"width":0.11666667,"height":0.018888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Хром","depth":8,"bounds":{"left":0.06736111,"top":0.49444443,"width":0.9326389,"height":0.02},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"ПРОДУКТИ ОТ СЪЩАТА КАТЕГОРИЯ","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false}]...
|
-8633771868310694139
|
5847123193542202052
|
click
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
479.52€ / 937.86
479.52€ / 937.86
Всички Категории
Всички Категории
Търси в Продуктите ...
Compares
0
Сравни
Wishlists
0
Любими
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 RPM, SATA 6Gb/s )
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 RPM, SATA 6Gb/s )
Начало
Начало
»
Магазин
Магазин
»
Компютри и Периферия
Компютри и Периферия
»
Компоненти
Компоненти
»
Твърди Дискове
Твърди Дискове
WESTERN DIGITAL
Цена
€239
76
/
468
93
лв
с ДДС
* ВЪНШЕН ДОСТАВЧИК - (1 ДО 3 ДНИ)
*
- Стоката е в склад на официалния вносител на марката за България. Времето за доставка е обикновено от 1 до 3 работни дни. Възможно е към момента на завършване на поръчката, продукта да е вече изчерпан. В случай на изчерпана наличност ще се свържем с Вас
К-во:
2
Добави в Количката
Добави в Количката
Сравни Продукта
Сравни
Добави в Любими
Удължи гаранцията си
Удължи гаранцията си
+1 година: + 36€
+2 години: + 46€
Код
:
WD60EFPX
Категория
:
Твърди Дискове
Твърди Дискове
Гаранция
:
3 Години
РЕЙТИНГ
Покажи Статистика
Добави
ТВОЯ РЕЙТИНГ
Оценете Продукта
Оцени
МНЕНИЯ
Напиши
Улеснено Поръчване -
като въведете само телефон и име:
[PHONE]
Lukáš Koválik
Съгласен съм с
Общите условия
Общите условия
Ще Ви потърсим в рамките на работния ден. Внимание: При грешен телефонен номер, нямаме начин да се свържем с Вас.
КУПИ
Информираме Ви, че въпреки нашите усилия не можем да гарантираме, че публикуваната информация и снимки не съдържат неточности или грешки, които не могат да бъдат правно основание за претенции.
ОПИСАНИЕ
ОПИСАНИЕ
ДЕТАЙЛИ
ДЕТАЙЛИ
МНЕНИЯ
МНЕНИЯ
ИИ ОПИСАНИЕ
ИИ ОПИСАНИЕ
Предназначен за
Сториджи
Капацитет, GB
6 000 GB (6 TB)
Външен/ вътрешен
Internal
Размер, inch
3.5" (8.89 cm)
Скорост, об/мин
5 400 rpm
Интерфейс
SATA 6Gb/s
Цвят
-
Приложение
за специализирана употреба
Предназначен за
Капацитет, GB
Външен/ вътрешен
Размер, inch
Скорост, об/мин
Интерфейс
Цвят
Приложение
Сториджи
6 000 GB (6 TB)
Internal
3.5" (8.89 cm)
5 400 rpm
SATA 6Gb/s
-
за специализирана употреба
Хром
ПРОДУКТИ ОТ СЪЩАТА КАТЕГОРИЯ...
|
7600
|
|
7602
|
142
|
14
|
2026-04-13T16:08:40.083782+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096520083_m1.jpg...
|
Firefox
|
Количка — Personal
|
True
|
xtreme.bg/shop/cart.php
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Количка
Количка
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
479.52€ / 937.86 лв.
479.52€ / 937.86 лв.
Всички Категории
Всички Категории
Търси в Продуктите ...
Compares
0
Сравни
Wishlists
0
Любими
Количка
Количка
Начало
Начало
»
Количка
Количка
Количка
Изтрий Количката
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 RPM, SATA 6Gb/s )
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 RPM, SATA 6Gb/s )
239.76€
Кво:
2
€479
52
/
937
86
лв
Премахни от Количката
delete
Поръчка
Общо всичко:
€479
52
/
937
86
лв
Всички цени са с включено ДДС
ПОРЪЧАЙ
ПОРЪЧАЙ
share СПОДЕЛИ
share
СПОДЕЛИ
Запишете се за нашият Бюлетин
Запишете се за нашият Бюлетин
Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.
[EMAIL]
Запиши се
Facebook
Twitter
Instagram
xtreme
xtreme
Ако имате въпроси свържете се с нас!
Ако имате въпроси свържете се с нас!
[EMAIL]
[EMAIL]
+359 886 177 222
+359 886 177 222
Информация
Информация
Доставка
Доставка
Условия
Условия
Рекламация
Рекламация
Контакти
Контакти
За Нас
За Нас
Потребител
Потребител
Профил
Профил
История на Поръчките
История на Поръчките
Любими
Любими
GDPR
GDPR
Лични Данни
Лични Данни
Методи за Плащане
Методи за Плащане
Наложен Платеж
Кредитна/Дебитна Карта
Банков Превод
На изплащане ПБ Лични Финанси
Copyright © 2023
Xtreme.bg
Xtreme.bg
- Всички права запазени.
Онлайн магазин вървящ на
XCore
XCore
xtreme.bg/shop/checkout.php...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Inbox - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Shameless • HBO Max","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Shameless • HBO Max","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Machines - Tailscale","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Machines - Tailscale","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe Dashboard","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe Dashboard","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Количка","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Количка","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"google maps timeline export - Google Search","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"google maps timeline export - Google Search","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New Tab","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"0886 177 222","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0886 177 222","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"info@xtreme.bg","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"info@xtreme.bg","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"facebook","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"twitter","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"instagram","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"xtreme","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"НАЧАЛО","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"НАЧАЛО","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"МАГАЗИН","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"МАГАЗИН","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"БЛОГ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"БЛОГ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"КОНТАКТИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"КОНТАКТИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"РЕКЛАМАЦИИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"РЕКЛАМАЦИИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Lukáš Koválik","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":" 479.52€ / 937.86 лв.","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"479.52€ / 937.86 лв.","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Всички Категории","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Всички Категории","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Търси в Продуктите ...","depth":11,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Compares","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Сравни","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Wishlists","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Любими","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Количка","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Количка","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Начало","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Начало","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"»","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Количка","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Количка","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Количка","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Изтрий Количката","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Твърд диск, Western Digital Red 6TB Plus ( 3.5\", 256MB, 5400 RPM, SATA 6Gb/s )","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Твърд диск, Western Digital Red 6TB Plus ( 3.5\", 256MB, 5400 RPM, SATA 6Gb/s )","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"239.76€","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Кво:","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€479","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"52","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"937","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"86","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Премахни от Количката","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"delete","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Поръчка","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Общо всичко:","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€479","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"52","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"937","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"86","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Всички цени са с включено ДДС","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"ПОРЪЧАЙ","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":true,"is_selected":false},{"role":"AXStaticText","text":"ПОРЪЧАЙ","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"share СПОДЕЛИ","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"share","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"СПОДЕЛИ","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Запишете се за нашият Бюлетин","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Запишете се за нашият Бюлетин","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"kovaliklukas@gmail.com","depth":8,"value":"kovaliklukas@gmail.com","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Запиши се","depth":8,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Facebook","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Twitter","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Instagram","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"xtreme","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"xtreme","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Ако имате въпроси свържете се с нас!","depth":10,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ако имате въпроси свържете се с нас!","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"info@xtreme.bg","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"info@xtreme.bg","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"+359 886 177 222","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"+359 886 177 222","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Информация","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Информация","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Доставка","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Доставка","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Условия","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Условия","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Рекламация","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Рекламация","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Контакти","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Контакти","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"За Нас","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"За Нас","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Потребител","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Потребител","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Профил","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Профил","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"История на Поръчките","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"История на Поръчките","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Любими","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Любими","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"GDPR","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"GDPR","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Лични Данни","depth":11,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Лични Данни","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Методи за Плащане","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Методи за Плащане","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Наложен Платеж","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Кредитна/Дебитна Карта","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Банков Превод","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"На изплащане ПБ Лични Финанси","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Copyright © 2023","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Xtreme.bg","depth":8,"help_text":"Xtreme Online Store","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Xtreme.bg","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"- Всички права запазени.","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Онлайн магазин вървящ на","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"XCore","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"XCore","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"xtreme.bg/shop/checkout.php","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
-8852946111182820439
|
-1106470079349593456
|
click
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Количка
Количка
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
479.52€ / 937.86 лв.
479.52€ / 937.86 лв.
Всички Категории
Всички Категории
Търси в Продуктите ...
Compares
0
Сравни
Wishlists
0
Любими
Количка
Количка
Начало
Начало
»
Количка
Количка
Количка
Изтрий Количката
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 RPM, SATA 6Gb/s )
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 RPM, SATA 6Gb/s )
239.76€
Кво:
2
€479
52
/
937
86
лв
Премахни от Количката
delete
Поръчка
Общо всичко:
€479
52
/
937
86
лв
Всички цени са с включено ДДС
ПОРЪЧАЙ
ПОРЪЧАЙ
share СПОДЕЛИ
share
СПОДЕЛИ
Запишете се за нашият Бюлетин
Запишете се за нашият Бюлетин
Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.
[EMAIL]
Запиши се
Facebook
Twitter
Instagram
xtreme
xtreme
Ако имате въпроси свържете се с нас!
Ако имате въпроси свържете се с нас!
[EMAIL]
[EMAIL]
+359 886 177 222
+359 886 177 222
Информация
Информация
Доставка
Доставка
Условия
Условия
Рекламация
Рекламация
Контакти
Контакти
За Нас
За Нас
Потребител
Потребител
Профил
Профил
История на Поръчките
История на Поръчките
Любими
Любими
GDPR
GDPR
Лични Данни
Лични Данни
Методи за Плащане
Методи за Плащане
Наложен Платеж
Кредитна/Дебитна Карта
Банков Превод
На изплащане ПБ Лични Финанси
Copyright © 2023
Xtreme.bg
Xtreme.bg
- Всички права запазени.
Онлайн магазин вървящ на
XCore
XCore
xtreme.bg/shop/checkout.php...
|
NULL
|
|
7603
|
142
|
15
|
2026-04-13T16:09:10.252336+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096550252_m1.jpg...
|
Firefox
|
Поръчка — Personal
|
True
|
xtreme.bg/shop/checkout.php
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Поръчка
Поръчка
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
479.52€ / 937.86 лв.
479.52€ / 937.86 лв.
Всички Категории
Всички Категории
Търси в Продуктите ...
Compares
0
Сравни
Wishlists
0
Любими
Поръчка
Поръчка
Начало
Начало
»
Поръчка
Поръчка
Поръчка
ПОРЪЧКА КАТО РЕГИСТРИРАН
|
УЛЕСНЕНА ПОРЪЧКА
Подробности за Доставката
Име и Фамилия
Lukáš Koválik
person
Телефон
Моля, сверете внимателно въведения номер !
phone
Изберете начин на Доставка
Получаване от нашия магазин.
Безплатна Доставка
0.00 €
Офис на Спиди.
Безплатна Доставка
0.00 €
До Адрес.
Безплатна Доставка
0.00 €
Изберете начин на Плащане
Наложен Платеж при получаване в Брой или с Карта
Кредитна / Дебитна Карта - Плащане онлайн
Банков Превод
Купи на Кредит
Ако не искате да ви се обадим за потвърждение напишете
„
Без Обаждане
“
в полето Инструкции
Инструкции
Допълнителни Инструкции към поръчката
Опционално
Искам Фактура
Съгласен съм с
Общите условия
Общите условия
ЗАВЪРШИ ПОРЪЧКАТА
Обобщение на Поръчката
1 Артикул
Скрий Детайлите
expand_less
Твърд диск, Western Digital Red 6TB Plus ( 3.5
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 RPM, SATA 6Gb/s )
2
x
€239
76
/
468
93
лв
€479
52
/
937
86
лв
Сума
€479
52
/
937
86
лв
Доставка
0.00€
Общо
479.52€
Всички цени са с включено ДДС
СИГУРНОСТ
УСЛОВИЯ ЗА ДОСТАВКА
РЕКЛАМАЦИИ
Запишете се за нашият Бюлетин
Запишете се за нашият Бюлетин
Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.
[EMAIL]
Запиши се
Facebook
Twitter
Instagram
xtreme
xtreme
Ако имате въпроси свържете се с нас!
Ако имате въпроси свържете се с нас!
[EMAIL]
[EMAIL]
+359 886 177 222
+359 886 177 222
Информация
Информация
Доставка
Доставка
Условия
Условия
Рекламация
Рекламация
Контакти
Контакти
За Нас
За Нас
Потребител
Потребител
Профил
Профил
История на Поръчките
История на Поръчките
Любими
Любими
GDPR
GDPR
Лични Данни
Лични Данни
Методи за Плащане
Методи за Плащане
Наложен Платеж
Кредитна/Дебитна Карта
Банков Превод
На изплащане ПБ Лични Финанси
Copyright © 2023
Xtreme.bg
Xtreme.bg
- Всички права запазени.
Онлайн магазин вървящ на
XCore
XCore...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Inbox - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Shameless • HBO Max","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Shameless • HBO Max","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Machines - Tailscale","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Machines - Tailscale","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe Dashboard","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe Dashboard","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Поръчка","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Поръчка","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"google maps timeline export - Google Search","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"google maps timeline export - Google Search","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New Tab","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"0886 177 222","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0886 177 222","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"info@xtreme.bg","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"info@xtreme.bg","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"facebook","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"twitter","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"instagram","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"xtreme","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"НАЧАЛО","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"НАЧАЛО","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"МАГАЗИН","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"МАГАЗИН","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"БЛОГ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"БЛОГ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"КОНТАКТИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"КОНТАКТИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"РЕКЛАМАЦИИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"РЕКЛАМАЦИИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Lukáš Koválik","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":" 479.52€ / 937.86 лв.","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"479.52€ / 937.86 лв.","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Всички Категории","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Всички Категории","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Търси в Продуктите ...","depth":11,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Compares","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Сравни","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Wishlists","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Любими","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Поръчка","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Поръчка","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Начало","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Начало","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"»","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Поръчка","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Поръчка","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Поръчка","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ПОРЪЧКА КАТО РЕГИСТРИРАН","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"|","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"УЛЕСНЕНА ПОРЪЧКА","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Подробности за Доставката","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Име и Фамилия","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Lukáš Koválik","depth":12,"value":"Lukáš Koválik","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"person","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Телефон","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Моля, сверете внимателно въведения номер !","depth":12,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"phone","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Изберете начин на Доставка","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Получаване от нашия магазин.","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Безплатна Доставка","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.00 €","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Офис на Спиди.","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Безплатна Доставка","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.00 €","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"До Адрес.","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Безплатна Доставка","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.00 €","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Изберете начин на Плащане","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Наложен Платеж при получаване в Брой или с Карта","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Кредитна / Дебитна Карта - Плащане онлайн","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Банков Превод","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Купи на Кредит","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ако не искате да ви се обадим за потвърждение напишете","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"„","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Без Обаждане","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"“","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"в полето Инструкции","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Инструкции","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextArea","text":"Допълнителни Инструкции към поръчката","depth":11,"help_text":"","role_description":"text entry area","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Опционално","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Искам Фактура","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Съгласен съм с","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Общите условия","depth":13,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Общите условия","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"ЗАВЪРШИ ПОРЪЧКАТА","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Обобщение на Поръчката","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1 Артикул","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Скрий Детайлите","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"expand_less","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Твърд диск, Western Digital Red 6TB Plus ( 3.5","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Твърд диск, Western Digital Red 6TB Plus ( 3.5\", 256MB, 5400 RPM, SATA 6Gb/s )","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"x","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€239","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"76","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"468","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"93","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€479","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"52","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"937","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"86","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Сума","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€479","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"52","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"937","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"86","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Доставка","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.00€","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Общо","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"479.52€","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Всички цени са с включено ДДС","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"СИГУРНОСТ","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"УСЛОВИЯ ЗА ДОСТАВКА","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"РЕКЛАМАЦИИ","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Запишете се за нашият Бюлетин","depth":7,"bounds":{"left":0.0,"top":0.0,"width":0.38541666,"height":0.02},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Запишете се за нашият Бюлетин","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.19930555,"height":0.028888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.","depth":8,"bounds":{"left":0.0,"top":0.0055555557,"width":0.34097221,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"kovaliklukas@gmail.com","depth":8,"bounds":{"left":0.35069445,"top":0.0,"width":0.46805555,"height":0.053333335},"value":"kovaliklukas@gmail.com","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Запиши се","depth":8,"bounds":{"left":0.81875,"top":0.0,"width":0.09166667,"height":0.04},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Facebook","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Twitter","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Instagram","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"xtreme","depth":9,"bounds":{"left":0.0,"top":0.08555555,"width":0.3236111,"height":0.08888889},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"xtreme","depth":10,"bounds":{"left":0.0,"top":0.14666666,"width":0.27847221,"height":0.026666667},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"bounds":{"left":0.0,"top":0.20666666,"width":0.027777778,"height":0.044444446},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Ако имате въпроси свържете се с нас!","depth":10,"bounds":{"left":0.0,"top":0.20444444,"width":0.2923611,"height":0.027777778},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ако имате въпроси свържете се с нас!","depth":11,"bounds":{"left":0.0,"top":0.20777778,"width":0.17986111,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"info@xtreme.bg","depth":11,"bounds":{"left":0.0,"top":0.25333333,"width":0.06944445,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"info@xtreme.bg","depth":12,"bounds":{"left":0.0,"top":0.25333333,"width":0.06944445,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"+359 886 177 222","depth":10,"bounds":{"left":0.0,"top":0.29555556,"width":0.10069445,"height":0.026666667},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"+359 886 177 222","depth":11,"bounds":{"left":0.0,"top":0.29555556,"width":0.10069445,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Информация","depth":9,"bounds":{"left":0.25416666,"top":0.08555555,"width":0.32291666,"height":0.02111111},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Информация","depth":10,"bounds":{"left":0.25416666,"top":0.08222222,"width":0.075,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Доставка","depth":11,"bounds":{"left":0.25416666,"top":0.12666667,"width":0.044444446,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Доставка","depth":12,"bounds":{"left":0.25416666,"top":0.12666667,"width":0.044444446,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Условия","depth":11,"bounds":{"left":0.25416666,"top":0.15444444,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Условия","depth":12,"bounds":{"left":0.25416666,"top":0.15444444,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Рекламация","depth":11,"bounds":{"left":0.25416666,"top":0.18333334,"width":0.056944445,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Рекламация","depth":12,"bounds":{"left":0.25416666,"top":0.18333334,"width":0.056944445,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Контакти","depth":11,"bounds":{"left":0.25416666,"top":0.21111111,"width":0.043055557,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Контакти","depth":12,"bounds":{"left":0.25416666,"top":0.21111111,"width":0.043055557,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"За Нас","depth":11,"bounds":{"left":0.25416666,"top":0.24,"width":0.030555556,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"За Нас","depth":12,"bounds":{"left":0.25416666,"top":0.24,"width":0.030555556,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Потребител","depth":9,"bounds":{"left":0.59791666,"top":0.08555555,"width":0.3236111,"height":0.02111111},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Потребител","depth":10,"bounds":{"left":0.59791666,"top":0.08222222,"width":0.06736111,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Профил","depth":11,"bounds":{"left":0.59791666,"top":0.12666667,"width":0.036805555,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Профил","depth":12,"bounds":{"left":0.59791666,"top":0.12666667,"width":0.036805555,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"История на Поръчките","depth":11,"bounds":{"left":0.59791666,"top":0.15444444,"width":0.104166664,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"История на Поръчките","depth":12,"bounds":{"left":0.59791666,"top":0.15444444,"width":0.104166664,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Любими","depth":11,"bounds":{"left":0.59791666,"top":0.18333334,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Любими","depth":12,"bounds":{"left":0.59791666,"top":0.18333334,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"GDPR","depth":11,"bounds":{"left":0.59791666,"top":0.21111111,"width":0.025,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"GDPR","depth":12,"bounds":{"left":0.59791666,"top":0.21111111,"width":0.025,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Лични Данни","depth":11,"bounds":{"left":0.59791666,"top":0.24,"width":0.061805554,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Лични Данни","depth":12,"bounds":{"left":0.59791666,"top":0.24,"width":0.061805554,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Методи за Плащане","depth":9,"bounds":{"left":0.9423611,"top":0.08555555,"width":0.057638884,"height":0.027777778},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Методи за Плащане","depth":10,"bounds":{"left":0.9423611,"top":0.08555555,"width":0.057638884,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Наложен Платеж","depth":11,"bounds":{"left":0.9423611,"top":0.13444445,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Кредитна/Дебитна Карта","depth":11,"bounds":{"left":0.9423611,"top":0.16222222,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Банков Превод","depth":11,"bounds":{"left":0.9423611,"top":0.21777777,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"На изплащане ПБ Лични Финанси","depth":11,"bounds":{"left":0.9423611,"top":0.24555555,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Copyright © 2023","depth":8,"bounds":{"left":0.39097223,"top":0.36333334,"width":0.08055556,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Xtreme.bg","depth":8,"bounds":{"left":0.47152779,"top":0.36333334,"width":0.046527777,"height":0.02111111},"help_text":"Xtreme Online Store","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Xtreme.bg","depth":9,"bounds":{"left":0.47152779,"top":0.36333334,"width":0.046527777,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"- Всички права запазени.","depth":8,"bounds":{"left":0.51805556,"top":0.36333334,"width":0.11875,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Онлайн магазин вървящ на","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"XCore","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"XCore","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
2535583028595392832
|
-1032090385875424752
|
idle
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Поръчка
Поръчка
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
479.52€ / 937.86 лв.
479.52€ / 937.86 лв.
Всички Категории
Всички Категории
Търси в Продуктите ...
Compares
0
Сравни
Wishlists
0
Любими
Поръчка
Поръчка
Начало
Начало
»
Поръчка
Поръчка
Поръчка
ПОРЪЧКА КАТО РЕГИСТРИРАН
|
УЛЕСНЕНА ПОРЪЧКА
Подробности за Доставката
Име и Фамилия
Lukáš Koválik
person
Телефон
Моля, сверете внимателно въведения номер !
phone
Изберете начин на Доставка
Получаване от нашия магазин.
Безплатна Доставка
0.00 €
Офис на Спиди.
Безплатна Доставка
0.00 €
До Адрес.
Безплатна Доставка
0.00 €
Изберете начин на Плащане
Наложен Платеж при получаване в Брой или с Карта
Кредитна / Дебитна Карта - Плащане онлайн
Банков Превод
Купи на Кредит
Ако не искате да ви се обадим за потвърждение напишете
„
Без Обаждане
“
в полето Инструкции
Инструкции
Допълнителни Инструкции към поръчката
Опционално
Искам Фактура
Съгласен съм с
Общите условия
Общите условия
ЗАВЪРШИ ПОРЪЧКАТА
Обобщение на Поръчката
1 Артикул
Скрий Детайлите
expand_less
Твърд диск, Western Digital Red 6TB Plus ( 3.5
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 RPM, SATA 6Gb/s )
2
x
€239
76
/
468
93
лв
€479
52
/
937
86
лв
Сума
€479
52
/
937
86
лв
Доставка
0.00€
Общо
479.52€
Всички цени са с включено ДДС
СИГУРНОСТ
УСЛОВИЯ ЗА ДОСТАВКА
РЕКЛАМАЦИИ
Запишете се за нашият Бюлетин
Запишете се за нашият Бюлетин
Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.
[EMAIL]
Запиши се
Facebook
Twitter
Instagram
xtreme
xtreme
Ако имате въпроси свържете се с нас!
Ако имате въпроси свържете се с нас!
[EMAIL]
[EMAIL]
+359 886 177 222
+359 886 177 222
Информация
Информация
Доставка
Доставка
Условия
Условия
Рекламация
Рекламация
Контакти
Контакти
За Нас
За Нас
Потребител
Потребител
Профил
Профил
История на Поръчките
История на Поръчките
Любими
Любими
GDPR
GDPR
Лични Данни
Лични Данни
Методи за Плащане
Методи за Плащане
Наложен Платеж
Кредитна/Дебитна Карта
Банков Превод
На изплащане ПБ Лични Финанси
Copyright © 2023
Xtreme.bg
Xtreme.bg
- Всички права запазени.
Онлайн магазин вървящ на
XCore
XCore...
|
7602
|
|
7604
|
142
|
16
|
2026-04-13T16:09:38.955562+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096578955_m1.jpg...
|
Firefox
|
Поръчка — Personal
|
True
|
xtreme.bg/shop/checkout.php
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Поръчка
Поръчка
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
479.52€ / 937.86 лв.
479.52€ / 937.86 лв.
Всички Категории
Всички Категории
Търси в Продуктите ...
Compares
0
Сравни
Wishlists
0
Любими
Поръчка
Поръчка
Начало
Начало
»
Поръчка
Поръчка
Поръчка
ПОРЪЧКА КАТО РЕГИСТРИРАН
|
УЛЕСНЕНА ПОРЪЧКА
Подробности за Доставката
Име и Фамилия
Lukáš Koválik
person
Телефон
Моля, сверете внимателно въведения номер !
phone
Изберете начин на Доставка
Получаване от нашия магазин.
Безплатна Доставка
0.00 €
Офис на Спиди.
Безплатна Доставка
0.00 €
До Адрес.
Безплатна Доставка
0.00 €
Адрес за Доставка
Нов Адрес: Лукаш Ковлик - [PHONE], София , Богомил Райнов 4 Нов Адрес: Лукаш Ковлик - [PHONE], София , Богомил Райнов 4 Нов Адрес: Лукаш Ковлик - [PHONE], София , Богомил Райнов 4
Нов Адрес: Лукаш Ковлик - [PHONE], София , Богомил Райнов 4
Изберете начин на Плащане
Наложен Платеж при получаване в Брой или с Карта
Кредитна / Дебитна Карта - Плащане онлайн
Банков Превод
Купи на Кредит
Ако не искате да ви се обадим за потвърждение напишете
„
Без Обаждане
“
в полето Инструкции
Инструкции
Допълнителни Инструкции към поръчката
Опционално
Искам Фактура
Съгласен съм с
Общите условия
Общите условия
ЗАВЪРШИ ПОРЪЧКАТА
Обобщение на Поръчката
1 Артикул
Скрий Детайлите
expand_less
Твърд диск, Western Digital Red 6TB Plus ( 3.5
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 RPM, SATA 6Gb/s )
2
x
€239
76
/
468
93
лв
€479
52
/
937
86
лв
Сума
€479
52
/
937
86
лв
Доставка
0.00€
Общо
479.52€
Всички цени са с включено ДДС
СИГУРНОСТ
УСЛОВИЯ ЗА ДОСТАВКА
РЕКЛАМАЦИИ
Запишете се за нашият Бюлетин
Запишете се за нашият Бюлетин
Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.
[EMAIL]
Запиши се
Facebook
Twitter
Instagram
xtreme
xtreme
Ако имате въпроси свържете се с нас!
Ако имате въпроси свържете се с нас!
[EMAIL]
[EMAIL]
+359 886 177 222
+359 886 177 222
Информация
Информация
Доставка
Доставка
Условия
Условия
Рекламация
Рекламация
Контакти
Контакти
За Нас
За Нас
Потребител
Потребител
Профил
Профил
История на Поръчките
История на Поръчките
Любими
Любими
GDPR
GDPR
Лични Данни
Лични Данни
Методи за Плащане
Методи за Плащане
Наложен Платеж
Кредитна/Дебитна Карта
Банков Превод
На изплащане ПБ Лични Финанси
Copyright © 2023
Xtreme.bg
Xtreme.bg
- Всички права запазени.
Онлайн магазин вървящ на
XCore
XCore...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Inbox - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Shameless • HBO Max","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Shameless • HBO Max","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Machines - Tailscale","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Machines - Tailscale","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe Dashboard","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe Dashboard","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Поръчка","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Поръчка","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"google maps timeline export - Google Search","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"google maps timeline export - Google Search","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New Tab","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"0886 177 222","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0886 177 222","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"info@xtreme.bg","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"info@xtreme.bg","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"facebook","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"twitter","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"instagram","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"xtreme","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"НАЧАЛО","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"НАЧАЛО","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"МАГАЗИН","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"МАГАЗИН","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"БЛОГ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"БЛОГ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"КОНТАКТИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"КОНТАКТИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"РЕКЛАМАЦИИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"РЕКЛАМАЦИИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Lukáš Koválik","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":" 479.52€ / 937.86 лв.","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"479.52€ / 937.86 лв.","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Всички Категории","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Всички Категории","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Търси в Продуктите ...","depth":11,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Compares","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Сравни","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Wishlists","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Любими","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Поръчка","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Поръчка","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Начало","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Начало","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"»","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Поръчка","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Поръчка","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Поръчка","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ПОРЪЧКА КАТО РЕГИСТРИРАН","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"|","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"УЛЕСНЕНА ПОРЪЧКА","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Подробности за Доставката","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Име и Фамилия","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Lukáš Koválik","depth":12,"value":"Lukáš Koválik","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"person","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Телефон","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Моля, сверете внимателно въведения номер !","depth":12,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"phone","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Изберете начин на Доставка","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Получаване от нашия магазин.","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Безплатна Доставка","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.00 €","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Офис на Спиди.","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Безплатна Доставка","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.00 €","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"До Адрес.","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Безплатна Доставка","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.00 €","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Адрес за Доставка","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Нов Адрес: Лукаш Ковлик - +359877878118, София , Богомил Райнов 4 Нов Адрес: Лукаш Ковлик - +359877878118, София , Богомил Райнов 4 Нов Адрес: Лукаш Ковлик - +359877878118, София , Богомил Райнов 4","depth":13,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Нов Адрес: Лукаш Ковлик - +359877878118, София , Богомил Райнов 4","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Изберете начин на Плащане","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Наложен Платеж при получаване в Брой или с Карта","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Кредитна / Дебитна Карта - Плащане онлайн","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Банков Превод","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Купи на Кредит","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ако не искате да ви се обадим за потвърждение напишете","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"„","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Без Обаждане","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"“","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"в полето Инструкции","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Инструкции","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextArea","text":"Допълнителни Инструкции към поръчката","depth":11,"help_text":"","role_description":"text entry area","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Опционално","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Искам Фактура","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Съгласен съм с","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Общите условия","depth":13,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Общите условия","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"ЗАВЪРШИ ПОРЪЧКАТА","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Обобщение на Поръчката","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1 Артикул","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Скрий Детайлите","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"expand_less","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Твърд диск, Western Digital Red 6TB Plus ( 3.5","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Твърд диск, Western Digital Red 6TB Plus ( 3.5\", 256MB, 5400 RPM, SATA 6Gb/s )","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"x","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€239","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"76","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"468","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"93","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€479","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"52","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"937","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"86","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Сума","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€479","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"52","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"937","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"86","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Доставка","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.00€","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Общо","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"479.52€","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Всички цени са с включено ДДС","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"СИГУРНОСТ","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"УСЛОВИЯ ЗА ДОСТАВКА","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"РЕКЛАМАЦИИ","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Запишете се за нашият Бюлетин","depth":7,"bounds":{"left":0.0,"top":0.043333333,"width":0.38541666,"height":0.02},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Запишете се за нашият Бюлетин","depth":8,"bounds":{"left":0.0,"top":0.03888889,"width":0.19930555,"height":0.028888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.","depth":8,"bounds":{"left":0.0,"top":0.064444445,"width":0.34097221,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"kovaliklukas@gmail.com","depth":8,"bounds":{"left":0.35069445,"top":0.04777778,"width":0.46805555,"height":0.053333335},"value":"kovaliklukas@gmail.com","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Запиши се","depth":8,"bounds":{"left":0.81875,"top":0.054444443,"width":0.09166667,"height":0.04},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Facebook","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Twitter","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Instagram","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"xtreme","depth":9,"bounds":{"left":0.0,"top":0.14444445,"width":0.3236111,"height":0.08888889},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"xtreme","depth":10,"bounds":{"left":0.0,"top":0.20555556,"width":0.27847221,"height":0.026666667},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"bounds":{"left":0.0,"top":0.26555556,"width":0.027777778,"height":0.044444446},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Ако имате въпроси свържете се с нас!","depth":10,"bounds":{"left":0.0,"top":0.26333332,"width":0.2923611,"height":0.027777778},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ако имате въпроси свържете се с нас!","depth":11,"bounds":{"left":0.0,"top":0.26666668,"width":0.17986111,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"info@xtreme.bg","depth":11,"bounds":{"left":0.0,"top":0.3122222,"width":0.06944445,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"info@xtreme.bg","depth":12,"bounds":{"left":0.0,"top":0.3122222,"width":0.06944445,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"+359 886 177 222","depth":10,"bounds":{"left":0.0,"top":0.35444444,"width":0.10069445,"height":0.026666667},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"+359 886 177 222","depth":11,"bounds":{"left":0.0,"top":0.35444444,"width":0.10069445,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Информация","depth":9,"bounds":{"left":0.25416666,"top":0.14444445,"width":0.32291666,"height":0.02111111},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Информация","depth":10,"bounds":{"left":0.25416666,"top":0.1411111,"width":0.075,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Доставка","depth":11,"bounds":{"left":0.25416666,"top":0.18555556,"width":0.044444446,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Доставка","depth":12,"bounds":{"left":0.25416666,"top":0.18555556,"width":0.044444446,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Условия","depth":11,"bounds":{"left":0.25416666,"top":0.21333334,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Условия","depth":12,"bounds":{"left":0.25416666,"top":0.21333334,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Рекламация","depth":11,"bounds":{"left":0.25416666,"top":0.24222222,"width":0.056944445,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Рекламация","depth":12,"bounds":{"left":0.25416666,"top":0.24222222,"width":0.056944445,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Контакти","depth":11,"bounds":{"left":0.25416666,"top":0.27,"width":0.043055557,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Контакти","depth":12,"bounds":{"left":0.25416666,"top":0.27,"width":0.043055557,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"За Нас","depth":11,"bounds":{"left":0.25416666,"top":0.2988889,"width":0.030555556,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"За Нас","depth":12,"bounds":{"left":0.25416666,"top":0.2988889,"width":0.030555556,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Потребител","depth":9,"bounds":{"left":0.59791666,"top":0.14444445,"width":0.3236111,"height":0.02111111},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Потребител","depth":10,"bounds":{"left":0.59791666,"top":0.1411111,"width":0.06736111,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Профил","depth":11,"bounds":{"left":0.59791666,"top":0.18555556,"width":0.036805555,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Профил","depth":12,"bounds":{"left":0.59791666,"top":0.18555556,"width":0.036805555,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"История на Поръчките","depth":11,"bounds":{"left":0.59791666,"top":0.21333334,"width":0.104166664,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"История на Поръчките","depth":12,"bounds":{"left":0.59791666,"top":0.21333334,"width":0.104166664,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Любими","depth":11,"bounds":{"left":0.59791666,"top":0.24222222,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Любими","depth":12,"bounds":{"left":0.59791666,"top":0.24222222,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"GDPR","depth":11,"bounds":{"left":0.59791666,"top":0.27,"width":0.025,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"GDPR","depth":12,"bounds":{"left":0.59791666,"top":0.27,"width":0.025,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Лични Данни","depth":11,"bounds":{"left":0.59791666,"top":0.2988889,"width":0.061805554,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Лични Данни","depth":12,"bounds":{"left":0.59791666,"top":0.2988889,"width":0.061805554,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Методи за Плащане","depth":9,"bounds":{"left":0.9423611,"top":0.14444445,"width":0.057638884,"height":0.027777778},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Методи за Плащане","depth":10,"bounds":{"left":0.9423611,"top":0.14444445,"width":0.057638884,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Наложен Платеж","depth":11,"bounds":{"left":0.9423611,"top":0.19333333,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Кредитна/Дебитна Карта","depth":11,"bounds":{"left":0.9423611,"top":0.2211111,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Банков Превод","depth":11,"bounds":{"left":0.9423611,"top":0.27666667,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"На изплащане ПБ Лични Финанси","depth":11,"bounds":{"left":0.9423611,"top":0.30444443,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Copyright © 2023","depth":8,"bounds":{"left":0.39097223,"top":0.42222223,"width":0.08055556,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Xtreme.bg","depth":8,"bounds":{"left":0.47152779,"top":0.42222223,"width":0.046527777,"height":0.02111111},"help_text":"Xtreme Online Store","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Xtreme.bg","depth":9,"bounds":{"left":0.47152779,"top":0.42222223,"width":0.046527777,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"- Всички права запазени.","depth":8,"bounds":{"left":0.51805556,"top":0.42222223,"width":0.11875,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Онлайн магазин вървящ на","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"XCore","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"XCore","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
3000280852395023611
|
-2184976671633003952
|
click
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Поръчка
Поръчка
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
479.52€ / 937.86 лв.
479.52€ / 937.86 лв.
Всички Категории
Всички Категории
Търси в Продуктите ...
Compares
0
Сравни
Wishlists
0
Любими
Поръчка
Поръчка
Начало
Начало
»
Поръчка
Поръчка
Поръчка
ПОРЪЧКА КАТО РЕГИСТРИРАН
|
УЛЕСНЕНА ПОРЪЧКА
Подробности за Доставката
Име и Фамилия
Lukáš Koválik
person
Телефон
Моля, сверете внимателно въведения номер !
phone
Изберете начин на Доставка
Получаване от нашия магазин.
Безплатна Доставка
0.00 €
Офис на Спиди.
Безплатна Доставка
0.00 €
До Адрес.
Безплатна Доставка
0.00 €
Адрес за Доставка
Нов Адрес: Лукаш Ковлик - [PHONE], София , Богомил Райнов 4 Нов Адрес: Лукаш Ковлик - [PHONE], София , Богомил Райнов 4 Нов Адрес: Лукаш Ковлик - [PHONE], София , Богомил Райнов 4
Нов Адрес: Лукаш Ковлик - [PHONE], София , Богомил Райнов 4
Изберете начин на Плащане
Наложен Платеж при получаване в Брой или с Карта
Кредитна / Дебитна Карта - Плащане онлайн
Банков Превод
Купи на Кредит
Ако не искате да ви се обадим за потвърждение напишете
„
Без Обаждане
“
в полето Инструкции
Инструкции
Допълнителни Инструкции към поръчката
Опционално
Искам Фактура
Съгласен съм с
Общите условия
Общите условия
ЗАВЪРШИ ПОРЪЧКАТА
Обобщение на Поръчката
1 Артикул
Скрий Детайлите
expand_less
Твърд диск, Western Digital Red 6TB Plus ( 3.5
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 RPM, SATA 6Gb/s )
2
x
€239
76
/
468
93
лв
€479
52
/
937
86
лв
Сума
€479
52
/
937
86
лв
Доставка
0.00€
Общо
479.52€
Всички цени са с включено ДДС
СИГУРНОСТ
УСЛОВИЯ ЗА ДОСТАВКА
РЕКЛАМАЦИИ
Запишете се за нашият Бюлетин
Запишете се за нашият Бюлетин
Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.
[EMAIL]
Запиши се
Facebook
Twitter
Instagram
xtreme
xtreme
Ако имате въпроси свържете се с нас!
Ако имате въпроси свържете се с нас!
[EMAIL]
[EMAIL]
+359 886 177 222
+359 886 177 222
Информация
Информация
Доставка
Доставка
Условия
Условия
Рекламация
Рекламация
Контакти
Контакти
За Нас
За Нас
Потребител
Потребител
Профил
Профил
История на Поръчките
История на Поръчките
Любими
Любими
GDPR
GDPR
Лични Данни
Лични Данни
Методи за Плащане
Методи за Плащане
Наложен Платеж
Кредитна/Дебитна Карта
Банков Превод
На изплащане ПБ Лични Финанси
Copyright © 2023
Xtreme.bg
Xtreme.bg
- Всички права запазени.
Онлайн магазин вървящ на
XCore
XCore...
|
NULL
|
|
7605
|
142
|
17
|
2026-04-13T16:09:51.883064+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096591883_m1.jpg...
|
Firefox
|
Поръчка — Personal
|
True
|
xtreme.bg/shop/checkout.php
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Поръчка
Поръчка
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
479.52€ / 937.86 лв.
479.52€ / 937.86 лв.
Всички Категории
Всички Категории
Търси в Продуктите ...
Compares
0
Сравни
Wishlists
0
Любими
Поръчка
Поръчка
Начало
Начало
»
Поръчка
Поръчка
Поръчка
ПОРЪЧКА КАТО РЕГИСТРИРАН
|
УЛЕСНЕНА ПОРЪЧКА
Подробности за Доставката
Име и Фамилия
Lukáš Koválik
person
Телефон
Моля, сверете внимателно въведения номер !
phone
Изберете начин на Доставка
Получаване от нашия магазин.
Безплатна Доставка
0.00 €
Офис на Спиди.
Безплатна Доставка
0.00 €
До Адрес.
Безплатна Доставка
0.00 €
Населено Място
Изберте от падащото меню след като започнете да пишете (търсене)
Офис на Спиди
Изберте от падащото меню след като започнете да пишете (търсене)
Изберете начин на Плащане
Наложен Платеж при получаване в Брой или с Карта
Кредитна / Дебитна Карта - Плащане онлайн
Банков Превод
Купи на Кредит
Ако не искате да ви се обадим за потвърждение напишете
„
Без Обаждане
“
в полето Инструкции
Инструкции
Допълнителни Инструкции към поръчката
Опционално
Искам Фактура
Съгласен съм с
Общите условия
Общите условия
ЗАВЪРШИ ПОРЪЧКАТА
Обобщение на Поръчката
1 Артикул
Скрий Детайлите
expand_less
Твърд диск, Western Digital Red 6TB Plus ( 3.5
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 RPM, SATA 6Gb/s )
2
x
€239
76
/
468
93
лв
€479
52
/
937
86
лв
Сума
€479
52
/
937
86
лв
Доставка
0.00€
Такса Наложен Платеж
7.19€
Общо
486.71€
Всички цени са с включено ДДС
СИГУРНОСТ
УСЛОВИЯ ЗА ДОСТАВКА
РЕКЛАМАЦИИ
Запишете се за нашият Бюлетин
Запишете се за нашият Бюлетин
Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.
[EMAIL]
Запиши се
Facebook
Twitter
Instagram
xtreme
xtreme
Ако имате въпроси свържете се с нас!
Ако имате въпроси свържете се с нас!
[EMAIL]
[EMAIL]
+359 886 177 222
+359 886 177 222
Информация
Информация
Доставка
Доставка
Условия
Условия
Рекламация
Рекламация
Контакти
Контакти
За Нас
За Нас
Потребител
Потребител
Профил
Профил
История на Поръчките
История на Поръчките
Любими
Любими
GDPR
GDPR
Лични Данни
Лични Данни
Методи за Плащане
Методи за Плащане
Наложен Платеж
Кредитна/Дебитна Карта
Банков Превод
На изплащане ПБ Лични Финанси
Copyright © 2023
Xtreme.bg
Xtreme.bg
- Всички права запазени.
Онлайн магазин вървящ на
XCore
XCore...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Inbox - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Shameless • HBO Max","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Shameless • HBO Max","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Machines - Tailscale","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Machines - Tailscale","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe Dashboard","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe Dashboard","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Поръчка","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Поръчка","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"google maps timeline export - Google Search","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"google maps timeline export - Google Search","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New Tab","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"0886 177 222","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0886 177 222","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"info@xtreme.bg","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"info@xtreme.bg","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"facebook","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"twitter","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"instagram","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"xtreme","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"НАЧАЛО","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"НАЧАЛО","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"МАГАЗИН","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"МАГАЗИН","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"БЛОГ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"БЛОГ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"КОНТАКТИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"КОНТАКТИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"РЕКЛАМАЦИИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"РЕКЛАМАЦИИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Lukáš Koválik","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":" 479.52€ / 937.86 лв.","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"479.52€ / 937.86 лв.","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Всички Категории","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Всички Категории","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Търси в Продуктите ...","depth":11,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Compares","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Сравни","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Wishlists","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Любими","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Поръчка","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Поръчка","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Начало","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Начало","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"»","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Поръчка","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Поръчка","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Поръчка","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ПОРЪЧКА КАТО РЕГИСТРИРАН","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"|","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"УЛЕСНЕНА ПОРЪЧКА","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Подробности за Доставката","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Име и Фамилия","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Lukáš Koválik","depth":12,"value":"Lukáš Koválik","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"person","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Телефон","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Моля, сверете внимателно въведения номер !","depth":12,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"phone","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Изберете начин на Доставка","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Получаване от нашия магазин.","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Безплатна Доставка","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.00 €","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Офис на Спиди.","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Безплатна Доставка","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.00 €","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"До Адрес.","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Безплатна Доставка","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.00 €","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Населено Място","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Изберте от падащото меню след като започнете да пишете (търсене)","depth":12,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Офис на Спиди","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Изберте от падащото меню след като започнете да пишете (търсене)","depth":12,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Изберете начин на Плащане","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Наложен Платеж при получаване в Брой или с Карта","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Кредитна / Дебитна Карта - Плащане онлайн","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Банков Превод","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Купи на Кредит","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ако не искате да ви се обадим за потвърждение напишете","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"„","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Без Обаждане","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"“","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"в полето Инструкции","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Инструкции","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextArea","text":"Допълнителни Инструкции към поръчката","depth":11,"help_text":"","role_description":"text entry area","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Опционално","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Искам Фактура","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Съгласен съм с","depth":13,"bounds":{"left":0.25694445,"top":0.0,"width":0.06944445,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Общите условия","depth":13,"bounds":{"left":0.3263889,"top":0.0,"width":0.072222225,"height":0.02},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Общите условия","depth":15,"bounds":{"left":0.3263889,"top":0.0,"width":0.072222225,"height":0.02},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"ЗАВЪРШИ ПОРЪЧКАТА","depth":11,"bounds":{"left":0.19652778,"top":0.0,"width":0.23194444,"height":0.054444443},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Обобщение на Поръчката","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1 Артикул","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Скрий Детайлите","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"expand_less","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Твърд диск, Western Digital Red 6TB Plus ( 3.5","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Твърд диск, Western Digital Red 6TB Plus ( 3.5\", 256MB, 5400 RPM, SATA 6Gb/s )","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"x","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€239","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"76","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"468","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"93","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€479","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"52","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"937","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"86","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Сума","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€479","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"52","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"937","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"86","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Доставка","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.00€","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Такса Наложен Платеж","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"7.19€","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Общо","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"486.71€","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Всички цени са с включено ДДС","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"СИГУРНОСТ","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"УСЛОВИЯ ЗА ДОСТАВКА","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"РЕКЛАМАЦИИ","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Запишете се за нашият Бюлетин","depth":7,"bounds":{"left":0.0,"top":0.1,"width":0.38541666,"height":0.02},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Запишете се за нашият Бюлетин","depth":8,"bounds":{"left":0.0,"top":0.09555556,"width":0.19930555,"height":0.028888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.","depth":8,"bounds":{"left":0.0,"top":0.12111111,"width":0.34097221,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"kovaliklukas@gmail.com","depth":8,"bounds":{"left":0.35069445,"top":0.104444444,"width":0.46805555,"height":0.053333335},"value":"kovaliklukas@gmail.com","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Запиши се","depth":8,"bounds":{"left":0.81875,"top":0.11111111,"width":0.09166667,"height":0.04},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Facebook","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Twitter","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Instagram","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"xtreme","depth":9,"bounds":{"left":0.0,"top":0.20111111,"width":0.3236111,"height":0.08888889},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"xtreme","depth":10,"bounds":{"left":0.0,"top":0.26222223,"width":0.27847221,"height":0.026666667},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"bounds":{"left":0.0,"top":0.32222223,"width":0.027777778,"height":0.044444446},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Ако имате въпроси свържете се с нас!","depth":10,"bounds":{"left":0.0,"top":0.32,"width":0.2923611,"height":0.027777778},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ако имате въпроси свържете се с нас!","depth":11,"bounds":{"left":0.0,"top":0.32333332,"width":0.17986111,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"info@xtreme.bg","depth":11,"bounds":{"left":0.0,"top":0.36888888,"width":0.06944445,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"info@xtreme.bg","depth":12,"bounds":{"left":0.0,"top":0.36888888,"width":0.06944445,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"+359 886 177 222","depth":10,"bounds":{"left":0.0,"top":0.41111112,"width":0.10069445,"height":0.026666667},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"+359 886 177 222","depth":11,"bounds":{"left":0.0,"top":0.41111112,"width":0.10069445,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Информация","depth":9,"bounds":{"left":0.25416666,"top":0.20111111,"width":0.32291666,"height":0.02111111},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Информация","depth":10,"bounds":{"left":0.25416666,"top":0.19777778,"width":0.075,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Доставка","depth":11,"bounds":{"left":0.25416666,"top":0.24222222,"width":0.044444446,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Доставка","depth":12,"bounds":{"left":0.25416666,"top":0.24222222,"width":0.044444446,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Условия","depth":11,"bounds":{"left":0.25416666,"top":0.27,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Условия","depth":12,"bounds":{"left":0.25416666,"top":0.27,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Рекламация","depth":11,"bounds":{"left":0.25416666,"top":0.2988889,"width":0.056944445,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Рекламация","depth":12,"bounds":{"left":0.25416666,"top":0.2988889,"width":0.056944445,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Контакти","depth":11,"bounds":{"left":0.25416666,"top":0.32666665,"width":0.043055557,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Контакти","depth":12,"bounds":{"left":0.25416666,"top":0.32666665,"width":0.043055557,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"За Нас","depth":11,"bounds":{"left":0.25416666,"top":0.35555556,"width":0.030555556,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"За Нас","depth":12,"bounds":{"left":0.25416666,"top":0.35555556,"width":0.030555556,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Потребител","depth":9,"bounds":{"left":0.59791666,"top":0.20111111,"width":0.3236111,"height":0.02111111},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Потребител","depth":10,"bounds":{"left":0.59791666,"top":0.19777778,"width":0.06736111,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Профил","depth":11,"bounds":{"left":0.59791666,"top":0.24222222,"width":0.036805555,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Профил","depth":12,"bounds":{"left":0.59791666,"top":0.24222222,"width":0.036805555,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"История на Поръчките","depth":11,"bounds":{"left":0.59791666,"top":0.27,"width":0.104166664,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"История на Поръчките","depth":12,"bounds":{"left":0.59791666,"top":0.27,"width":0.104166664,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Любими","depth":11,"bounds":{"left":0.59791666,"top":0.2988889,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Любими","depth":12,"bounds":{"left":0.59791666,"top":0.2988889,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"GDPR","depth":11,"bounds":{"left":0.59791666,"top":0.32666665,"width":0.025,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"GDPR","depth":12,"bounds":{"left":0.59791666,"top":0.32666665,"width":0.025,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Лични Данни","depth":11,"bounds":{"left":0.59791666,"top":0.35555556,"width":0.061805554,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Лични Данни","depth":12,"bounds":{"left":0.59791666,"top":0.35555556,"width":0.061805554,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Методи за Плащане","depth":9,"bounds":{"left":0.9423611,"top":0.20111111,"width":0.057638884,"height":0.027777778},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Методи за Плащане","depth":10,"bounds":{"left":0.9423611,"top":0.20111111,"width":0.057638884,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Наложен Платеж","depth":11,"bounds":{"left":0.9423611,"top":0.25,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Кредитна/Дебитна Карта","depth":11,"bounds":{"left":0.9423611,"top":0.2777778,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Банков Превод","depth":11,"bounds":{"left":0.9423611,"top":0.33333334,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"На изплащане ПБ Лични Финанси","depth":11,"bounds":{"left":0.9423611,"top":0.3611111,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Copyright © 2023","depth":8,"bounds":{"left":0.39097223,"top":0.4788889,"width":0.08055556,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Xtreme.bg","depth":8,"bounds":{"left":0.47152779,"top":0.4788889,"width":0.046527777,"height":0.02111111},"help_text":"Xtreme Online Store","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Xtreme.bg","depth":9,"bounds":{"left":0.47152779,"top":0.4788889,"width":0.046527777,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"- Всички права запазени.","depth":8,"bounds":{"left":0.51805556,"top":0.4788889,"width":0.11875,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Онлайн магазин вървящ на","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"XCore","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"XCore","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
7513508545422832437
|
-3340185164838032624
|
click
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Поръчка
Поръчка
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
479.52€ / 937.86 лв.
479.52€ / 937.86 лв.
Всички Категории
Всички Категории
Търси в Продуктите ...
Compares
0
Сравни
Wishlists
0
Любими
Поръчка
Поръчка
Начало
Начало
»
Поръчка
Поръчка
Поръчка
ПОРЪЧКА КАТО РЕГИСТРИРАН
|
УЛЕСНЕНА ПОРЪЧКА
Подробности за Доставката
Име и Фамилия
Lukáš Koválik
person
Телефон
Моля, сверете внимателно въведения номер !
phone
Изберете начин на Доставка
Получаване от нашия магазин.
Безплатна Доставка
0.00 €
Офис на Спиди.
Безплатна Доставка
0.00 €
До Адрес.
Безплатна Доставка
0.00 €
Населено Място
Изберте от падащото меню след като започнете да пишете (търсене)
Офис на Спиди
Изберте от падащото меню след като започнете да пишете (търсене)
Изберете начин на Плащане
Наложен Платеж при получаване в Брой или с Карта
Кредитна / Дебитна Карта - Плащане онлайн
Банков Превод
Купи на Кредит
Ако не искате да ви се обадим за потвърждение напишете
„
Без Обаждане
“
в полето Инструкции
Инструкции
Допълнителни Инструкции към поръчката
Опционално
Искам Фактура
Съгласен съм с
Общите условия
Общите условия
ЗАВЪРШИ ПОРЪЧКАТА
Обобщение на Поръчката
1 Артикул
Скрий Детайлите
expand_less
Твърд диск, Western Digital Red 6TB Plus ( 3.5
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 RPM, SATA 6Gb/s )
2
x
€239
76
/
468
93
лв
€479
52
/
937
86
лв
Сума
€479
52
/
937
86
лв
Доставка
0.00€
Такса Наложен Платеж
7.19€
Общо
486.71€
Всички цени са с включено ДДС
СИГУРНОСТ
УСЛОВИЯ ЗА ДОСТАВКА
РЕКЛАМАЦИИ
Запишете се за нашият Бюлетин
Запишете се за нашият Бюлетин
Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.
[EMAIL]
Запиши се
Facebook
Twitter
Instagram
xtreme
xtreme
Ако имате въпроси свържете се с нас!
Ако имате въпроси свържете се с нас!
[EMAIL]
[EMAIL]
+359 886 177 222
+359 886 177 222
Информация
Информация
Доставка
Доставка
Условия
Условия
Рекламация
Рекламация
Контакти
Контакти
За Нас
За Нас
Потребител
Потребител
Профил
Профил
История на Поръчките
История на Поръчките
Любими
Любими
GDPR
GDPR
Лични Данни
Лични Данни
Методи за Плащане
Методи за Плащане
Наложен Платеж
Кредитна/Дебитна Карта
Банков Превод
На изплащане ПБ Лични Финанси
Copyright © 2023
Xtreme.bg
Xtreme.bg
- Всички права запазени.
Онлайн магазин вървящ на
XCore
XCore...
|
7604
|
|
7606
|
142
|
18
|
2026-04-13T16:10:00.776712+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096600776_m1.jpg...
|
Code
|
Getting started with Cla… — screenpipe [SSH: 100.7 Getting started with Cla… — screenpipe [SSH: 100.73.206.126]...
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧ Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧G)
Run and Debug (⇧⌘D)
Remote Explorer
Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update
2
Claude Code
Containers
EXPLORER
EXPLORER
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
SCREENPIPE [SSH: [IP_ADDRESS]]
#recycle
app
__pycache__
consumers
static
.env
cli.py
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
data
pipes
db.sqlite
db.sqlite-shm
db.sqlite-wal
Outline Section
OUTLINE
OUTLINE
Timeline Section
TIMELINE
TIMELINE
pipe.md, Editor Group 1
Untitled-2, Editor Group 1
docker-compose.yml, preview, Editor Group 1
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
Getting started with Cla…, Editor Group 2
Problems (⇧⌘M)
PROBLEMS
Output (⇧⌘U)
OUTPUT
Debug Console (⇧⌘Y)
DEBUG CONSOLE
Terminal (⌃`)
TERMINAL
Ports
PORTS
remote SSH: [IP_ADDRESS]
SSH: [IP_ADDRESS]
No Problems
0
0
No Ports Forwarded
0
Notifications
Sign In
Sign In
Screen Reader Optimized
Info: Setting up SSH Host [IP_ADDRESS]: Setting up SSH tunnel
Command Succeeded
Getting started with Claude agent SDK
Session history
New session
Message actions
how to start it
Thinking
Thinking
Let me check what's in your working directory to understand what you're referring to.
Bash
IN
ls /volume1/screenpipe
Copy code to clipboard
OUT
app
data
db.sqlite
pipes
#recycle
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes
Copy code to clipboard
OUT
cli.py
consumers
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
static
ai-habits
day-recap
meeting-summary
standup-update
time-breakdown
video-export
[rerun: b2]
Read
docker-compose.yml
docker-compose.yml
This is a Screenpipe app with a Docker Compose setup. To start it:
Copy code to clipboard
cd /volume1/screenpipe/app
docker compose up -d
This builds the image (first run) and starts the container in the background
The app will be accessible at
[URL_WITH_CREDENTIALS]
sudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d
Once running, the dashboard will be at
http://your-nas-ip:8766
http://your-nas-ip:8766
and it will query the data you already copied — the database has 6,923 frames and 5,464 OCR records ready to go.
Message actions
docker-compose.yml
docker-compose.yml
I have ugos ugreen nas. I can see the ui but it is empty. No data. Also when I open it there is defsault today, lets make default yesterday.
Thinking
Thinking
Let me check why data isn't showing and look at the frontend.
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT DATE(timestamp) as d, COUNT(*) FROM frames GROUP BY d ORDER BY d DESC LIMIT 10;"
Copy code to clipboard
OUT...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"Explorer (⇧⌘E)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":true},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Search (⇧⌘F)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Source Control (⌃⇧G)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Run and Debug (⇧⌘D)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Remote Explorer","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"2","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Claude Code","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Containers","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"EXPLORER","depth":17,"role_description":"heading"},{"role":"AXStaticText","text":"EXPLORER","depth":18,"role_description":"text"},{"role":"AXButton","text":"Explorer Section: screenpipe [SSH: 100.73.206.126]","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"Explorer Section: screenpipe [SSH: 100.73.206.126]","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"SCREENPIPE [SSH: 100.73.206.126]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"#recycle","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"app","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"__pycache__","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"consumers","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"static","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"cli.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"docker-compose.yml","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"Dockerfile","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"main.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"requirements.txt","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"data","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"pipes","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite-shm","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite-wal","depth":27,"role_description":"text"},{"role":"AXButton","text":"Outline Section","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"OUTLINE","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"OUTLINE","depth":23,"role_description":"text"},{"role":"AXButton","text":"Timeline Section","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"TIMELINE","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"TIMELINE","depth":23,"role_description":"text"},{"role":"AXRadioButton","text":"pipe.md, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Untitled-2, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"docker-compose.yml, preview, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXStaticText","text":"","depth":29,"role_description":"text"},{"role":"AXTextArea","text":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","depth":28,"value":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","role_description":"editor","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","depth":29,"role_description":"text"},{"role":"AXRadioButton","text":"Getting started with Cla…, Editor Group 2","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXRadioButton","text":"Problems (⇧⌘M)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"PROBLEMS","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Output (⇧⌘U)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUTPUT","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Debug Console (⇧⌘Y)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"DEBUG CONSOLE","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Terminal (⌃`)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":true},{"role":"AXStaticText","text":"TERMINAL","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Ports","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"PORTS","depth":24,"role_description":"text"},{"role":"AXButton","text":"remote SSH: 100.73.206.126","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"SSH: 100.73.206.126","depth":17,"role_description":"text"},{"role":"AXButton","text":"No Problems","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXButton","text":"No Ports Forwarded","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXButton","text":"Notifications","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sign In","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"Sign In","depth":17,"role_description":"text"},{"role":"AXButton","text":"Screen Reader Optimized","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Info: Setting up SSH Host 100.73.206.126: Setting up SSH tunnel","depth":12,"role_description":"text"},{"role":"AXStaticText","text":"Command Succeeded","depth":12,"role_description":"text"},{"role":"AXButton","text":"Getting started with Claude agent SDK","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Session history","depth":18,"help_text":"Session history","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New session","depth":18,"help_text":"New session","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"how to start it","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Let me check what's in your working directory to understand what you're referring to.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"app\ndata\ndb.sqlite\npipes\n#recycle\n[rerun: b1]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"cli.py\nconsumers\ndb.py\ndocker-compose.yml\nDockerfile\nmain.py\nrequirements.txt\nstatic\nai-habits\nday-recap\nmeeting-summary\nstandup-update\ntime-breakdown\nvideo-export\n[rerun: b2]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"docker-compose.yml","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker-compose.yml","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"This is a Screenpipe app with a Docker Compose setup. To start it:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app\ndocker compose up -d","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"This builds the image (first run) and starts the container in the background","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"The app will be accessible at","depth":23,"role_description":"text"},{"role":"AXLink","text":"http://your-server-ip:8766","depth":24,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"http://your-server-ip:8766","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"To check if it's running:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker compose ps","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"To view logs:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker compose logs -f","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Make sure an","depth":22,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"file exists in","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"before starting — the compose file references one (","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"env_file: .env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"). If it's missing, the container will fail to start.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app/.env 2>/dev/null && echo \"exists\" || echo \"MISSING\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/.env\nexists\n[rerun: b3]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"The","depth":22,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"file exists, so you're good to go. Just run:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app && docker compose up -d","depth":24,"role_description":"text"},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"docker-compose.yml","depth":22,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker-compose.yml","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"I opened it but there are no data after I coppied it there. the idea behind this app is to have the data pasted form screenpipe mac app and only query it and work with it","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Let me check the current state of the data.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls -lh /volume1/screenpipe/db.sqlite && ls /volume1/screenpipe/data/ | head -20","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"-rwxrwxrwx 1 Adm1n admin 423M Apr 13 17:20 /volume1/screenpipe/db.sqlite\n2026-04-09\n2026-04-11\n2026-04-12\n[rerun: b1]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \".tables\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"_sqlx_migrations meetings \naudio_chunks memories \naudio_tags memories_fts \naudio_transcriptions memories_fts_config \naudio_transcriptions_fts memories_fts_data \naudio_transcriptions_fts_config memories_fts_docsize \naudio_transcriptions_fts_data memories_fts_idx \naudio_transcriptions_fts_docsize ocr_text \naudio_transcriptions_fts_idx pipe_executions \nelements pipe_scheduler_state \nelements_fts speaker_embeddings \nelements_fts_config speakers \nelements_fts_data tags \nelements_fts_docsize ui_events \nelements_fts_idx ui_events_fts \nframes ui_events_fts_config \nframes_fts ui_events_fts_data \nframes_fts_config ui_events_fts_docsize \nframes_fts_content ui_events_fts_idx \nframes_fts_data video_chunks \nframes_fts_docsize vision_tags \nframes_fts_idx\n[rerun: b2]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \"SELECT COUNT(*) FROM frames; SELECT COUNT(*) FROM ocr_text; SELECT COUNT(*) FROM audio_transcriptions;\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"6923\n5464\n3\n[rerun: b3]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"The data is there — 423MB database with 6,923 frames and 5,464 OCR records. The app just isn't running yet. Let me check what the app actually does and whether it can query this data properly.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"main.py","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"main.py","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"db.py","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"db.py","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"The data is actually there — the database has 423MB of data. The app just needs to be started. Let me start it:","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app && docker compose up -d 2>&1","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Exit code 1\npermission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Get \"http://%2Fvar%2Frun%2Fdocker.sock/v1.45/containers/json?all=1&filters=%7B%22label%22%3A%7B%22com.docker.compose.config-hash%22%3Atrue%2C%22com.docker.compose.project%3Dapp%22%3Atrue%7D%7D\": dial unix /var/run/docker.sock: connect: permission denied\n[rerun: b4]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d 2>&1","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Exit code 1\nsudo: a terminal is required to read the password; either use the -S option to read from standard input or configure an askpass helper\nsudo: a password is required\n[rerun: b5]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"groups && id","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"admin users ughomeusers Media Social\nuid=1000(Adm1n) gid=10(admin) groups=10(admin),100(users),133(ughomeusers),1001(Media),1002(Social)\n[rerun: b6]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"You need to run Docker with elevated privileges. You're not in the","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"docker","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"group. There are two options:","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Option 1 — Run via Synology's Container Manager (DSM GUI)","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Open DSM → Container Manager → Project → Create project → point it to","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/docker-compose.yml","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Option 2 — Add yourself to the docker group (requires admin/root once)","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Open an SSH terminal as root (or via DSM terminal with admin):","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"sudo synogroup --add docker Adm1n\n# then log out and back in, then:\ncd /volume1/screenpipe/app && docker compose up -d","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Option 3 — Run it directly from an SSH session with sudo","depth":23,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"ssh admin@your-nas-ip\nsudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Once running, the dashboard will be at","depth":22,"role_description":"text"},{"role":"AXLink","text":"http://your-nas-ip:8766","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"http://your-nas-ip:8766","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"and it will query the data you already copied — the database has 6,923 frames and 5,464 OCR records ready to go.","depth":22,"role_description":"text"},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"docker-compose.yml","depth":22,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker-compose.yml","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"I have ugos ugreen nas. I can see the ui but it is empty. No data. Also when I open it there is defsault today, lets make default yesterday.","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Let me check why data isn't showing and look at the frontend.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \"SELECT DATE(timestamp) as d, COUNT(*) FROM frames GROUP BY d ORDER BY d DESC LIMIT 10;\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"}]...
|
-4981011842017472515
|
-8840107232503097839
|
click
|
accessibility
|
NULL
|
Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧ Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧G)
Run and Debug (⇧⌘D)
Remote Explorer
Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update
2
Claude Code
Containers
EXPLORER
EXPLORER
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
SCREENPIPE [SSH: [IP_ADDRESS]]
#recycle
app
__pycache__
consumers
static
.env
cli.py
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
data
pipes
db.sqlite
db.sqlite-shm
db.sqlite-wal
Outline Section
OUTLINE
OUTLINE
Timeline Section
TIMELINE
TIMELINE
pipe.md, Editor Group 1
Untitled-2, Editor Group 1
docker-compose.yml, preview, Editor Group 1
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
Getting started with Cla…, Editor Group 2
Problems (⇧⌘M)
PROBLEMS
Output (⇧⌘U)
OUTPUT
Debug Console (⇧⌘Y)
DEBUG CONSOLE
Terminal (⌃`)
TERMINAL
Ports
PORTS
remote SSH: [IP_ADDRESS]
SSH: [IP_ADDRESS]
No Problems
0
0
No Ports Forwarded
0
Notifications
Sign In
Sign In
Screen Reader Optimized
Info: Setting up SSH Host [IP_ADDRESS]: Setting up SSH tunnel
Command Succeeded
Getting started with Claude agent SDK
Session history
New session
Message actions
how to start it
Thinking
Thinking
Let me check what's in your working directory to understand what you're referring to.
Bash
IN
ls /volume1/screenpipe
Copy code to clipboard
OUT
app
data
db.sqlite
pipes
#recycle
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes
Copy code to clipboard
OUT
cli.py
consumers
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
static
ai-habits
day-recap
meeting-summary
standup-update
time-breakdown
video-export
[rerun: b2]
Read
docker-compose.yml
docker-compose.yml
This is a Screenpipe app with a Docker Compose setup. To start it:
Copy code to clipboard
cd /volume1/screenpipe/app
docker compose up -d
This builds the image (first run) and starts the container in the background
The app will be accessible at
[URL_WITH_CREDENTIALS]
sudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d
Once running, the dashboard will be at
http://your-nas-ip:8766
http://your-nas-ip:8766
and it will query the data you already copied — the database has 6,923 frames and 5,464 OCR records ready to go.
Message actions
docker-compose.yml
docker-compose.yml
I have ugos ugreen nas. I can see the ui but it is empty. No data. Also when I open it there is defsault today, lets make default yesterday.
Thinking
Thinking
Let me check why data isn't showing and look at the frontend.
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT DATE(timestamp) as d, COUNT(*) FROM frames GROUP BY d ORDER BY d DESC LIMIT 10;"
Copy code to clipboard
OUT...
|
NULL
|
|
7607
|
142
|
19
|
2026-04-13T16:10:09.577477+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096609577_m1.jpg...
|
Code
|
Getting started with Cla… — screenpipe [SSH: 100.7 Getting started with Cla… — screenpipe [SSH: 100.73.206.126]...
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧ Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧G)
Run and Debug (⇧⌘D)
Remote Explorer
Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update
2
Claude Code
Containers
EXPLORER
EXPLORER
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
SCREENPIPE [SSH: [IP_ADDRESS]]
#recycle
app
__pycache__
consumers
static
.env
cli.py
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
data
pipes
db.sqlite
db.sqlite-shm
db.sqlite-wal
Outline Section
OUTLINE
OUTLINE
Timeline Section
TIMELINE
TIMELINE
pipe.md, Editor Group 1
Untitled-2, Editor Group 1
docker-compose.yml, preview, Editor Group 1
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
Getting started with Cla…, Editor Group 2
Problems (⇧⌘M)
PROBLEMS
Output (⇧⌘U)
OUTPUT
Debug Console (⇧⌘Y)
DEBUG CONSOLE
Terminal (⌃`)
TERMINAL
Ports
PORTS
remote SSH: [IP_ADDRESS]
SSH: [IP_ADDRESS]
No Problems
0
0
No Ports Forwarded
0
Notifications
Sign In
Sign In
Screen Reader Optimized
Info: Setting up SSH Host [IP_ADDRESS]: Setting up SSH tunnel
Command Succeeded
Getting started with Claude agent SDK
Session history
New session
Message actions
how to start it
Thinking
Thinking
Let me check what's in your working directory to understand what you're referring to.
Bash
IN
ls /volume1/screenpipe
Copy code to clipboard
OUT
app
data
db.sqlite
pipes
#recycle
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes
Copy code to clipboard
OUT
cli.py
consumers
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
static
ai-habits
day-recap
meeting-summary
standup-update
time-breakdown
video-export
[rerun: b2]
Read
docker-compose.yml
docker-compose.yml
This is a Screenpipe app with a Docker Compose setup. To start it:
Copy code to clipboard
cd /volume1/screenpipe/app
docker compose up -d
This builds the image (first run) and starts the container in the background
The app will be accessible at
http://your-server-ip:8766
http://your-server-ip:8766
To check if it's running:
Copy code to clipboard
docker compose ps
To view logs:
Copy code to clipboard
docker compose logs -f
Make sure an
.env
file exists in
/volume1/screenpipe/app/
before starting — the compose file references one (
env_file: .env
). If it's missing, the container will fail to start.
Bash
IN
ls /volume1/screenpipe/app/.env 2>/dev/null && echo "exists" || echo "MISSING"
Copy code to clipboard
OUT
/volume1/screenpipe/app/.env
exists
[rerun: b3]
The
.env
file exists, so you're good to go. Just run:
Copy code to clipboard
cd /volume1/screenpipe/app && docker compose up -d...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"Explorer (⇧⌘E)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":true},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Search (⇧⌘F)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Source Control (⌃⇧G)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Run and Debug (⇧⌘D)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Remote Explorer","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"2","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Claude Code","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Containers","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"EXPLORER","depth":17,"role_description":"heading"},{"role":"AXStaticText","text":"EXPLORER","depth":18,"role_description":"text"},{"role":"AXButton","text":"Explorer Section: screenpipe [SSH: 100.73.206.126]","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"Explorer Section: screenpipe [SSH: 100.73.206.126]","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"SCREENPIPE [SSH: 100.73.206.126]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"#recycle","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"app","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"__pycache__","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"consumers","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"static","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"cli.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"docker-compose.yml","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"Dockerfile","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"main.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"requirements.txt","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"data","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"pipes","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite-shm","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite-wal","depth":27,"role_description":"text"},{"role":"AXButton","text":"Outline Section","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"OUTLINE","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"OUTLINE","depth":23,"role_description":"text"},{"role":"AXButton","text":"Timeline Section","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"TIMELINE","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"TIMELINE","depth":23,"role_description":"text"},{"role":"AXRadioButton","text":"pipe.md, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Untitled-2, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"docker-compose.yml, preview, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXStaticText","text":"","depth":29,"role_description":"text"},{"role":"AXTextArea","text":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","depth":28,"value":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","role_description":"editor","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","depth":29,"role_description":"text"},{"role":"AXRadioButton","text":"Getting started with Cla…, Editor Group 2","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXRadioButton","text":"Problems (⇧⌘M)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"PROBLEMS","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Output (⇧⌘U)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUTPUT","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Debug Console (⇧⌘Y)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"DEBUG CONSOLE","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Terminal (⌃`)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":true},{"role":"AXStaticText","text":"TERMINAL","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Ports","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"PORTS","depth":24,"role_description":"text"},{"role":"AXButton","text":"remote SSH: 100.73.206.126","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"SSH: 100.73.206.126","depth":17,"role_description":"text"},{"role":"AXButton","text":"No Problems","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXButton","text":"No Ports Forwarded","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXButton","text":"Notifications","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sign In","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"Sign In","depth":17,"role_description":"text"},{"role":"AXButton","text":"Screen Reader Optimized","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Info: Setting up SSH Host 100.73.206.126: Setting up SSH tunnel","depth":12,"role_description":"text"},{"role":"AXStaticText","text":"Command Succeeded","depth":12,"role_description":"text"},{"role":"AXButton","text":"Getting started with Claude agent SDK","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Session history","depth":18,"help_text":"Session history","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New session","depth":18,"help_text":"New session","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"how to start it","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Let me check what's in your working directory to understand what you're referring to.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"app\ndata\ndb.sqlite\npipes\n#recycle\n[rerun: b1]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"cli.py\nconsumers\ndb.py\ndocker-compose.yml\nDockerfile\nmain.py\nrequirements.txt\nstatic\nai-habits\nday-recap\nmeeting-summary\nstandup-update\ntime-breakdown\nvideo-export\n[rerun: b2]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"docker-compose.yml","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker-compose.yml","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"This is a Screenpipe app with a Docker Compose setup. To start it:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app\ndocker compose up -d","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"This builds the image (first run) and starts the container in the background","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"The app will be accessible at","depth":23,"role_description":"text"},{"role":"AXLink","text":"http://your-server-ip:8766","depth":24,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"http://your-server-ip:8766","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"To check if it's running:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker compose ps","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"To view logs:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker compose logs -f","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Make sure an","depth":22,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"file exists in","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"before starting — the compose file references one (","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"env_file: .env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"). If it's missing, the container will fail to start.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app/.env 2>/dev/null && echo \"exists\" || echo \"MISSING\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/.env\nexists\n[rerun: b3]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"The","depth":22,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"file exists, so you're good to go. Just run:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app && docker compose up -d","depth":24,"role_description":"text"}]...
|
1757990814507133917
|
-7111094436059965669
|
click
|
accessibility
|
NULL
|
Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧ Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧G)
Run and Debug (⇧⌘D)
Remote Explorer
Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update
2
Claude Code
Containers
EXPLORER
EXPLORER
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
SCREENPIPE [SSH: [IP_ADDRESS]]
#recycle
app
__pycache__
consumers
static
.env
cli.py
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
data
pipes
db.sqlite
db.sqlite-shm
db.sqlite-wal
Outline Section
OUTLINE
OUTLINE
Timeline Section
TIMELINE
TIMELINE
pipe.md, Editor Group 1
Untitled-2, Editor Group 1
docker-compose.yml, preview, Editor Group 1
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
Getting started with Cla…, Editor Group 2
Problems (⇧⌘M)
PROBLEMS
Output (⇧⌘U)
OUTPUT
Debug Console (⇧⌘Y)
DEBUG CONSOLE
Terminal (⌃`)
TERMINAL
Ports
PORTS
remote SSH: [IP_ADDRESS]
SSH: [IP_ADDRESS]
No Problems
0
0
No Ports Forwarded
0
Notifications
Sign In
Sign In
Screen Reader Optimized
Info: Setting up SSH Host [IP_ADDRESS]: Setting up SSH tunnel
Command Succeeded
Getting started with Claude agent SDK
Session history
New session
Message actions
how to start it
Thinking
Thinking
Let me check what's in your working directory to understand what you're referring to.
Bash
IN
ls /volume1/screenpipe
Copy code to clipboard
OUT
app
data
db.sqlite
pipes
#recycle
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes
Copy code to clipboard
OUT
cli.py
consumers
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
static
ai-habits
day-recap
meeting-summary
standup-update
time-breakdown
video-export
[rerun: b2]
Read
docker-compose.yml
docker-compose.yml
This is a Screenpipe app with a Docker Compose setup. To start it:
Copy code to clipboard
cd /volume1/screenpipe/app
docker compose up -d
This builds the image (first run) and starts the container in the background
The app will be accessible at
http://your-server-ip:8766
http://your-server-ip:8766
To check if it's running:
Copy code to clipboard
docker compose ps
To view logs:
Copy code to clipboard
docker compose logs -f
Make sure an
.env
file exists in
/volume1/screenpipe/app/
before starting — the compose file references one (
env_file: .env
). If it's missing, the container will fail to start.
Bash
IN
ls /volume1/screenpipe/app/.env 2>/dev/null && echo "exists" || echo "MISSING"
Copy code to clipboard
OUT
/volume1/screenpipe/app/.env
exists
[rerun: b3]
The
.env
file exists, so you're good to go. Just run:
Copy code to clipboard
cd /volume1/screenpipe/app && docker compose up -d...
|
7606
|
|
7608
|
142
|
20
|
2026-04-13T16:10:39.764556+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096639764_m1.jpg...
|
Code
|
Getting started with Cla… — screenpipe [SSH: 100.7 Getting started with Cla… — screenpipe [SSH: 100.73.206.126]...
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧ Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧G)
Run and Debug (⇧⌘D)
Remote Explorer
Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update
2
Claude Code
Containers
EXPLORER
EXPLORER
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
SCREENPIPE [SSH: [IP_ADDRESS]]
#recycle
app
__pycache__
consumers
static
.env
cli.py
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
data
pipes
db.sqlite
db.sqlite-shm
db.sqlite-wal
Outline Section
OUTLINE
OUTLINE
Timeline Section
TIMELINE
TIMELINE
pipe.md, Editor Group 1
Untitled-2, Editor Group 1
docker-compose.yml, preview, Editor Group 1
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
Getting started with Cla…, Editor Group 2
Problems (⇧⌘M)
PROBLEMS
Output (⇧⌘U)
OUTPUT
Debug Console (⇧⌘Y)
DEBUG CONSOLE
Terminal (⌃`)
TERMINAL
Ports
PORTS
remote SSH: [IP_ADDRESS]
SSH: [IP_ADDRESS]
No Problems
0
0
No Ports Forwarded
0
Notifications
Sign In
Sign In
Screen Reader Optimized
Info: Setting up SSH Host [IP_ADDRESS]: Setting up SSH tunnel
Command Succeeded
Getting started with Claude agent SDK
Session history
New session
Message actions
how to start it
Thinking
Thinking
Let me check what's in your working directory to understand what you're referring to.
Bash
IN
ls /volume1/screenpipe
Copy code to clipboard
OUT
app
data
db.sqlite
pipes
#recycle
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes
Copy code to clipboard
OUT
cli.py
consumers
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
static
ai-habits
day-recap
meeting-summary
standup-update
time-breakdown
video-export
[rerun: b2]
Read
docker-compose.yml
docker-compose.yml
This is a Screenpipe app with a Docker Compose setup. To start it:
Copy code to clipboard
cd /volume1/screenpipe/app
docker compose up -d
This builds the image (first run) and starts the container in the background
The app will be accessible at
[URL_WITH_CREDENTIALS]
sudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d
Once running, the dashboard will be at
http://your-nas-ip:8766
http://your-nas-ip:8766
and it will query the data you already copied — the database has 6,923 frames and 5,464 OCR records ready to go.
Message actions
docker-compose.yml
docker-compose.yml
I have ugos ugreen nas. I can see the ui but it is empty. No data. Also when I open it there is defsault today, lets make default yesterday.
Thinking
Thinking
Let me check why data isn't showing and look at the frontend.
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT DATE(timestamp) as d, COUNT(*) FROM frames GROUP BY d ORDER BY d DESC LIMIT 10;"
Copy code to clipboard
OUT
2026-04-13|2643
2026-04-12|2455
2026-04-11|1302
2026-04-09|523
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app/static/
Copy code to clipboard
OUT
index.html
[rerun: b2]
Bash
IN
wc -l /volume1/screenpipe/app/static/index.html
Copy code to clipboard
OUT
1048 /volume1/screenpipe/app/static/index.html
[rerun: b3]
Bash
IN
grep -n "today\|new Date\|date\|default" /volume1/screenpipe/app/static/index.html | head -40
Copy code to clipboard
OUT
24:input[type="date"] {
71:.sess-segment:hover { opacity: 0.8; cursor: default; }
179:button:disabled { opacity: 0.4; cursor: default; }
276: <input type="date" id="datePicker" onchange="refresh()">
336: <select id="sSrc" onchange="updateSourceHint()">
356: <input type="date" id="sDate">
388: <div id="workReportOut"><div class="empty">Click Generate Report to build a structured work summary for the selected date.</div></div>
398: <option value="standup">Standup Update</option>
453:const dp = document.getElementById('datePicker');
454:dp.value = new Date().toISOString().slice(0,10);
525: // Re-render bars to update selection highlight
679: const bucket = Math.floor(new Date(r.timestamp).getTime() / (everyMin * 60000));
710:function updateSourceHint() {
721: updateSourceHint();
797: if (!rows.length) { el.innerHTML = '<div class="empty">No audio for this date.</div>'; return; }
835: try { return new Date(ts).toLocaleTimeString([],{hour:'2-digit',minute:'2-digit'}); }
885: const spanMs = new Date(s.day_end) - new Date(s.day_start);
891: const left = (new Date(seg.start) - new Date(s.day_start)) / spanMs * 100;
892: const width = (new Date(seg.end) - new Date(seg.start)) / spanMs * 100;
899: const left = (new Date(brk.start) - new Date(s.day_start)) / spanMs * 100;
900: const width = (new Date(brk.end) - new Date(brk.start)) / spanMs * 100;
[rerun: b4]
Thinking
Thinking
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT timestamp FROM frames ORDER BY timestamp DESC LIMIT 3; SELECT timestamp FROM frames ORDER BY timestamp ASC LIMIT 3;"
Copy code to clipboard
OUT
2026-04-13T14:19:10.998594+00:00
2026-04-13T14:19:08.686883+00:00
2026-04-13T14:19:06.581255+00:00
2026-04-09T16:53:09.043761+00:00
2026-04-09T16:53:19.073971+00:00
2026-04-09T16:53:20.618409+00:00
[rerun: b5]
Read
index.html
index.html
(lines 451-480)
Thinking
Thinking
Bash
IN...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"Explorer (⇧⌘E)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":true},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Search (⇧⌘F)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Source Control (⌃⇧G)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Run and Debug (⇧⌘D)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Remote Explorer","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"2","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Claude Code","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Containers","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"EXPLORER","depth":17,"role_description":"heading"},{"role":"AXStaticText","text":"EXPLORER","depth":18,"role_description":"text"},{"role":"AXButton","text":"Explorer Section: screenpipe [SSH: 100.73.206.126]","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"Explorer Section: screenpipe [SSH: 100.73.206.126]","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"SCREENPIPE [SSH: 100.73.206.126]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"#recycle","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"app","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"__pycache__","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"consumers","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"static","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"cli.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"docker-compose.yml","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"Dockerfile","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"main.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"requirements.txt","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"data","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"pipes","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite-shm","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite-wal","depth":27,"role_description":"text"},{"role":"AXButton","text":"Outline Section","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"OUTLINE","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"OUTLINE","depth":23,"role_description":"text"},{"role":"AXButton","text":"Timeline Section","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"TIMELINE","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"TIMELINE","depth":23,"role_description":"text"},{"role":"AXRadioButton","text":"pipe.md, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Untitled-2, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"docker-compose.yml, preview, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXStaticText","text":"","depth":29,"role_description":"text"},{"role":"AXTextArea","text":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","depth":28,"value":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","role_description":"editor","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","depth":29,"role_description":"text"},{"role":"AXRadioButton","text":"Getting started with Cla…, Editor Group 2","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXRadioButton","text":"Problems (⇧⌘M)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"PROBLEMS","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Output (⇧⌘U)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUTPUT","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Debug Console (⇧⌘Y)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"DEBUG CONSOLE","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Terminal (⌃`)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":true},{"role":"AXStaticText","text":"TERMINAL","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Ports","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"PORTS","depth":24,"role_description":"text"},{"role":"AXButton","text":"remote SSH: 100.73.206.126","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"SSH: 100.73.206.126","depth":17,"role_description":"text"},{"role":"AXButton","text":"No Problems","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXButton","text":"No Ports Forwarded","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXButton","text":"Notifications","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sign In","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"Sign In","depth":17,"role_description":"text"},{"role":"AXButton","text":"Screen Reader Optimized","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Info: Setting up SSH Host 100.73.206.126: Setting up SSH tunnel","depth":12,"role_description":"text"},{"role":"AXStaticText","text":"Command Succeeded","depth":12,"role_description":"text"},{"role":"AXButton","text":"Getting started with Claude agent SDK","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Session history","depth":18,"help_text":"Session history","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New session","depth":18,"help_text":"New session","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"how to start it","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Let me check what's in your working directory to understand what you're referring to.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"app\ndata\ndb.sqlite\npipes\n#recycle\n[rerun: b1]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"cli.py\nconsumers\ndb.py\ndocker-compose.yml\nDockerfile\nmain.py\nrequirements.txt\nstatic\nai-habits\nday-recap\nmeeting-summary\nstandup-update\ntime-breakdown\nvideo-export\n[rerun: b2]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"docker-compose.yml","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker-compose.yml","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"This is a Screenpipe app with a Docker Compose setup. To start it:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app\ndocker compose up -d","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"This builds the image (first run) and starts the container in the background","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"The app will be accessible at","depth":23,"role_description":"text"},{"role":"AXLink","text":"http://your-server-ip:8766","depth":24,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"http://your-server-ip:8766","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"To check if it's running:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker compose ps","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"To view logs:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker compose logs -f","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Make sure an","depth":22,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"file exists in","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"before starting — the compose file references one (","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"env_file: .env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"). If it's missing, the container will fail to start.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app/.env 2>/dev/null && echo \"exists\" || echo \"MISSING\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/.env\nexists\n[rerun: b3]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"The","depth":22,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"file exists, so you're good to go. Just run:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app && docker compose up -d","depth":24,"role_description":"text"},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"docker-compose.yml","depth":22,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker-compose.yml","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"I opened it but there are no data after I coppied it there. the idea behind this app is to have the data pasted form screenpipe mac app and only query it and work with it","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Let me check the current state of the data.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls -lh /volume1/screenpipe/db.sqlite && ls /volume1/screenpipe/data/ | head -20","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"-rwxrwxrwx 1 Adm1n admin 423M Apr 13 17:20 /volume1/screenpipe/db.sqlite\n2026-04-09\n2026-04-11\n2026-04-12\n[rerun: b1]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \".tables\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"_sqlx_migrations meetings \naudio_chunks memories \naudio_tags memories_fts \naudio_transcriptions memories_fts_config \naudio_transcriptions_fts memories_fts_data \naudio_transcriptions_fts_config memories_fts_docsize \naudio_transcriptions_fts_data memories_fts_idx \naudio_transcriptions_fts_docsize ocr_text \naudio_transcriptions_fts_idx pipe_executions \nelements pipe_scheduler_state \nelements_fts speaker_embeddings \nelements_fts_config speakers \nelements_fts_data tags \nelements_fts_docsize ui_events \nelements_fts_idx ui_events_fts \nframes ui_events_fts_config \nframes_fts ui_events_fts_data \nframes_fts_config ui_events_fts_docsize \nframes_fts_content ui_events_fts_idx \nframes_fts_data video_chunks \nframes_fts_docsize vision_tags \nframes_fts_idx\n[rerun: b2]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \"SELECT COUNT(*) FROM frames; SELECT COUNT(*) FROM ocr_text; SELECT COUNT(*) FROM audio_transcriptions;\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"6923\n5464\n3\n[rerun: b3]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"The data is there — 423MB database with 6,923 frames and 5,464 OCR records. The app just isn't running yet. Let me check what the app actually does and whether it can query this data properly.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"main.py","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"main.py","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"db.py","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"db.py","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"The data is actually there — the database has 423MB of data. The app just needs to be started. Let me start it:","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app && docker compose up -d 2>&1","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Exit code 1\npermission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Get \"http://%2Fvar%2Frun%2Fdocker.sock/v1.45/containers/json?all=1&filters=%7B%22label%22%3A%7B%22com.docker.compose.config-hash%22%3Atrue%2C%22com.docker.compose.project%3Dapp%22%3Atrue%7D%7D\": dial unix /var/run/docker.sock: connect: permission denied\n[rerun: b4]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d 2>&1","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Exit code 1\nsudo: a terminal is required to read the password; either use the -S option to read from standard input or configure an askpass helper\nsudo: a password is required\n[rerun: b5]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"groups && id","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"admin users ughomeusers Media Social\nuid=1000(Adm1n) gid=10(admin) groups=10(admin),100(users),133(ughomeusers),1001(Media),1002(Social)\n[rerun: b6]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"You need to run Docker with elevated privileges. You're not in the","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"docker","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"group. There are two options:","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Option 1 — Run via Synology's Container Manager (DSM GUI)","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Open DSM → Container Manager → Project → Create project → point it to","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/docker-compose.yml","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Option 2 — Add yourself to the docker group (requires admin/root once)","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Open an SSH terminal as root (or via DSM terminal with admin):","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"sudo synogroup --add docker Adm1n\n# then log out and back in, then:\ncd /volume1/screenpipe/app && docker compose up -d","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Option 3 — Run it directly from an SSH session with sudo","depth":23,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"ssh admin@your-nas-ip\nsudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Once running, the dashboard will be at","depth":22,"role_description":"text"},{"role":"AXLink","text":"http://your-nas-ip:8766","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"http://your-nas-ip:8766","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"and it will query the data you already copied — the database has 6,923 frames and 5,464 OCR records ready to go.","depth":22,"role_description":"text"},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"docker-compose.yml","depth":22,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker-compose.yml","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"I have ugos ugreen nas. I can see the ui but it is empty. No data. Also when I open it there is defsault today, lets make default yesterday.","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Let me check why data isn't showing and look at the frontend.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \"SELECT DATE(timestamp) as d, COUNT(*) FROM frames GROUP BY d ORDER BY d DESC LIMIT 10;\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"2026-04-13|2643\n2026-04-12|2455\n2026-04-11|1302\n2026-04-09|523\n[rerun: b1]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app/static/","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"index.html\n[rerun: b2]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"wc -l /volume1/screenpipe/app/static/index.html","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"1048 /volume1/screenpipe/app/static/index.html\n[rerun: b3]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"grep -n \"today\\|new Date\\|date\\|default\" /volume1/screenpipe/app/static/index.html | head -40","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"24:input[type=\"date\"] {\n71:.sess-segment:hover { opacity: 0.8; cursor: default; }\n179:button:disabled { opacity: 0.4; cursor: default; }\n276: <input type=\"date\" id=\"datePicker\" onchange=\"refresh()\">\n336: <select id=\"sSrc\" onchange=\"updateSourceHint()\">\n356: <input type=\"date\" id=\"sDate\">\n388: <div id=\"workReportOut\"><div class=\"empty\">Click Generate Report to build a structured work summary for the selected date.</div></div>\n398: <option value=\"standup\">Standup Update</option>\n453:const dp = document.getElementById('datePicker');\n454:dp.value = new Date().toISOString().slice(0,10);\n525: // Re-render bars to update selection highlight\n679: const bucket = Math.floor(new Date(r.timestamp).getTime() / (everyMin * 60000));\n710:function updateSourceHint() {\n721: updateSourceHint();\n797: if (!rows.length) { el.innerHTML = '<div class=\"empty\">No audio for this date.</div>'; return; }\n835: try { return new Date(ts).toLocaleTimeString([],{hour:'2-digit',minute:'2-digit'}); }\n885: const spanMs = new Date(s.day_end) - new Date(s.day_start);\n891: const left = (new Date(seg.start) - new Date(s.day_start)) / spanMs * 100;\n892: const width = (new Date(seg.end) - new Date(seg.start)) / spanMs * 100;\n899: const left = (new Date(brk.start) - new Date(s.day_start)) / spanMs * 100;\n900: const width = (new Date(brk.end) - new Date(brk.start)) / spanMs * 100;\n[rerun: b4]","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \"SELECT timestamp FROM frames ORDER BY timestamp DESC LIMIT 3; SELECT timestamp FROM frames ORDER BY timestamp ASC LIMIT 3;\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"2026-04-13T14:19:10.998594+00:00\n2026-04-13T14:19:08.686883+00:00\n2026-04-13T14:19:06.581255+00:00\n2026-04-09T16:53:09.043761+00:00\n2026-04-09T16:53:19.073971+00:00\n2026-04-09T16:53:20.618409+00:00\n[rerun: b5]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"index.html","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"index.html","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"(lines 451-480)","depth":23,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"}]...
|
-6730745782348525947
|
-8840388707379145087
|
idle
|
accessibility
|
NULL
|
Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧ Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧G)
Run and Debug (⇧⌘D)
Remote Explorer
Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update
2
Claude Code
Containers
EXPLORER
EXPLORER
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
SCREENPIPE [SSH: [IP_ADDRESS]]
#recycle
app
__pycache__
consumers
static
.env
cli.py
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
data
pipes
db.sqlite
db.sqlite-shm
db.sqlite-wal
Outline Section
OUTLINE
OUTLINE
Timeline Section
TIMELINE
TIMELINE
pipe.md, Editor Group 1
Untitled-2, Editor Group 1
docker-compose.yml, preview, Editor Group 1
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
Getting started with Cla…, Editor Group 2
Problems (⇧⌘M)
PROBLEMS
Output (⇧⌘U)
OUTPUT
Debug Console (⇧⌘Y)
DEBUG CONSOLE
Terminal (⌃`)
TERMINAL
Ports
PORTS
remote SSH: [IP_ADDRESS]
SSH: [IP_ADDRESS]
No Problems
0
0
No Ports Forwarded
0
Notifications
Sign In
Sign In
Screen Reader Optimized
Info: Setting up SSH Host [IP_ADDRESS]: Setting up SSH tunnel
Command Succeeded
Getting started with Claude agent SDK
Session history
New session
Message actions
how to start it
Thinking
Thinking
Let me check what's in your working directory to understand what you're referring to.
Bash
IN
ls /volume1/screenpipe
Copy code to clipboard
OUT
app
data
db.sqlite
pipes
#recycle
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes
Copy code to clipboard
OUT
cli.py
consumers
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
static
ai-habits
day-recap
meeting-summary
standup-update
time-breakdown
video-export
[rerun: b2]
Read
docker-compose.yml
docker-compose.yml
This is a Screenpipe app with a Docker Compose setup. To start it:
Copy code to clipboard
cd /volume1/screenpipe/app
docker compose up -d
This builds the image (first run) and starts the container in the background
The app will be accessible at
[URL_WITH_CREDENTIALS]
sudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d
Once running, the dashboard will be at
http://your-nas-ip:8766
http://your-nas-ip:8766
and it will query the data you already copied — the database has 6,923 frames and 5,464 OCR records ready to go.
Message actions
docker-compose.yml
docker-compose.yml
I have ugos ugreen nas. I can see the ui but it is empty. No data. Also when I open it there is defsault today, lets make default yesterday.
Thinking
Thinking
Let me check why data isn't showing and look at the frontend.
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT DATE(timestamp) as d, COUNT(*) FROM frames GROUP BY d ORDER BY d DESC LIMIT 10;"
Copy code to clipboard
OUT
2026-04-13|2643
2026-04-12|2455
2026-04-11|1302
2026-04-09|523
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app/static/
Copy code to clipboard
OUT
index.html
[rerun: b2]
Bash
IN
wc -l /volume1/screenpipe/app/static/index.html
Copy code to clipboard
OUT
1048 /volume1/screenpipe/app/static/index.html
[rerun: b3]
Bash
IN
grep -n "today\|new Date\|date\|default" /volume1/screenpipe/app/static/index.html | head -40
Copy code to clipboard
OUT
24:input[type="date"] {
71:.sess-segment:hover { opacity: 0.8; cursor: default; }
179:button:disabled { opacity: 0.4; cursor: default; }
276: <input type="date" id="datePicker" onchange="refresh()">
336: <select id="sSrc" onchange="updateSourceHint()">
356: <input type="date" id="sDate">
388: <div id="workReportOut"><div class="empty">Click Generate Report to build a structured work summary for the selected date.</div></div>
398: <option value="standup">Standup Update</option>
453:const dp = document.getElementById('datePicker');
454:dp.value = new Date().toISOString().slice(0,10);
525: // Re-render bars to update selection highlight
679: const bucket = Math.floor(new Date(r.timestamp).getTime() / (everyMin * 60000));
710:function updateSourceHint() {
721: updateSourceHint();
797: if (!rows.length) { el.innerHTML = '<div class="empty">No audio for this date.</div>'; return; }
835: try { return new Date(ts).toLocaleTimeString([],{hour:'2-digit',minute:'2-digit'}); }
885: const spanMs = new Date(s.day_end) - new Date(s.day_start);
891: const left = (new Date(seg.start) - new Date(s.day_start)) / spanMs * 100;
892: const width = (new Date(seg.end) - new Date(seg.start)) / spanMs * 100;
899: const left = (new Date(brk.start) - new Date(s.day_start)) / spanMs * 100;
900: const width = (new Date(brk.end) - new Date(brk.start)) / spanMs * 100;
[rerun: b4]
Thinking
Thinking
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT timestamp FROM frames ORDER BY timestamp DESC LIMIT 3; SELECT timestamp FROM frames ORDER BY timestamp ASC LIMIT 3;"
Copy code to clipboard
OUT
2026-04-13T14:19:10.998594+00:00
2026-04-13T14:19:08.686883+00:00
2026-04-13T14:19:06.581255+00:00
2026-04-09T16:53:09.043761+00:00
2026-04-09T16:53:19.073971+00:00
2026-04-09T16:53:20.618409+00:00
[rerun: b5]
Read
index.html
index.html
(lines 451-480)
Thinking
Thinking
Bash
IN...
|
NULL
|
|
7609
|
142
|
21
|
2026-04-13T16:11:09.527618+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096669527_m1.jpg...
|
Code
|
Getting started with Cla… — screenpipe [SSH: 100.7 Getting started with Cla… — screenpipe [SSH: 100.73.206.126]...
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧ Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧G)
Run and Debug (⇧⌘D)
Remote Explorer
Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update
2
Claude Code
Containers
EXPLORER
EXPLORER
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
SCREENPIPE [SSH: [IP_ADDRESS]]
#recycle
app
__pycache__
consumers
static
.env
cli.py
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
data
pipes
db.sqlite
db.sqlite-shm
db.sqlite-wal
Outline Section
OUTLINE
OUTLINE
Timeline Section
TIMELINE
TIMELINE
pipe.md, Editor Group 1
Untitled-2, Editor Group 1
docker-compose.yml, preview, Editor Group 1
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
Getting started with Cla…, Editor Group 2
Problems (⇧⌘M)
PROBLEMS
Output (⇧⌘U)
OUTPUT
Debug Console (⇧⌘Y)
DEBUG CONSOLE
Terminal (⌃`)
TERMINAL
Ports
PORTS
remote SSH: [IP_ADDRESS]
SSH: [IP_ADDRESS]
No Problems
0
0
No Ports Forwarded
0
Notifications
Sign In
Sign In
Screen Reader Optimized
Info: Setting up SSH Host [IP_ADDRESS]: Setting up SSH tunnel
Command Succeeded
Getting started with Claude agent SDK
Session history
New session
Message actions
how to start it
Thinking
Thinking
Let me check what's in your working directory to understand what you're referring to.
Bash
IN
ls /volume1/screenpipe
Copy code to clipboard
OUT
app
data
db.sqlite
pipes
#recycle
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes
Copy code to clipboard
OUT
cli.py
consumers
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
static
ai-habits
day-recap
meeting-summary
standup-update
time-breakdown
video-export
[rerun: b2]
Read
docker-compose.yml
docker-compose.yml
This is a Screenpipe app with a Docker Compose setup. To start it:
Copy code to clipboard
cd /volume1/screenpipe/app
docker compose up -d
This builds the image (first run) and starts the container in the background
The app will be accessible at
http://your-server-ip:8766
http://your-server-ip:8766
To check if it's running:
Copy code to clipboard
docker compose ps
To view logs:
Copy code to clipboard
docker compose logs -f
Make sure an
.env
file exists in
/volume1/screenpipe/app/
before starting — the compose file references one (
env_file: .env
). If it's missing, the container will fail to start.
Bash
IN
ls /volume1/screenpipe/app/.env 2>/dev/null && echo "exists" || echo "MISSING"
Copy code to clipboard
OUT
/volume1/screenpipe/app/.env
exists
[rerun: b3]
The
.env
file exists, so you're good to go. Just run:
Copy code to clipboard
cd /volume1/screenpipe/app && docker compose up -d
Message actions
docker-compose.yml
docker-compose.yml
I opened it but there are no data after I coppied it there. the idea behind this app is to have the data pasted form screenpipe mac app and only query it and work with it
Thinking
Thinking
Let me check the current state of the data.
Bash
IN
ls -lh /volume1/screenpipe/db.sqlite && ls /volume1/screenpipe/data/ | head -20
Copy code to clipboard
OUT
-rwxrwxrwx 1 Adm1n admin 423M Apr 13 17:20 /volume1/screenpipe/db.sqlite
2026-04-09
2026-04-11
2026-04-12
[rerun: b1]
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite ".tables"
Copy code to clipboard
OUT
_sqlx_migrations meetings
audio_chunks memories
audio_tags memories_fts
audio_transcriptions memories_fts_config
audio_transcriptions_fts memories_fts_data
audio_transcriptions_fts_config memories_fts_docsize
audio_transcriptions_fts_data memories_fts_idx
audio_transcriptions_fts_docsize ocr_text
audio_transcriptions_fts_idx pipe_executions
elements pipe_scheduler_state
elements_fts speaker_embeddings
elements_fts_config speakers
elements_fts_data tags
elements_fts_docsize ui_events
elements_fts_idx ui_events_fts
frames ui_events_fts_config
frames_fts ui_events_fts_data
frames_fts_config ui_events_fts_docsize
frames_fts_content ui_events_fts_idx
frames_fts_data video_chunks
frames_fts_docsize vision_tags
frames_fts_idx
[rerun: b2]
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT COUNT(*) FROM frames; SELECT COUNT(*) FROM ocr_text; SELECT COUNT(*) FROM audio_transcriptions;"
Copy code to clipboard
OUT
6923
5464
3
[rerun: b3]
The data is there — 423MB database with 6,923 frames and 5,464 OCR records. The app just isn't running yet. Let me check what the app actually does and whether it can query this data properly.
Read
main.py
main.py
Read
db.py
db.py
The data is actually there — the database has 423MB of data. The app just needs to be started. Let me start it:
Bash
IN
cd /volume1/screenpipe/app && docker compose up -d 2>&1
Copy code to clipboard
OUT
Exit code 1
permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Get "http://%2Fvar%2Frun%2Fdocker.sock/v1.45/containers/json?all=1&filters=%7B%22label%22%3A%7B%22com.docker.compose.config-hash%22%3Atrue%2C%22com.docker.compose.project%3Dapp%22%3Atrue%7D%7D": dial unix /var/run/docker.sock: connect: permission denied
[rerun: b4]
Bash...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"Explorer (⇧⌘E)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":true},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Search (⇧⌘F)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Source Control (⌃⇧G)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Run and Debug (⇧⌘D)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Remote Explorer","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"2","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Claude Code","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Containers","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"EXPLORER","depth":17,"role_description":"heading"},{"role":"AXStaticText","text":"EXPLORER","depth":18,"role_description":"text"},{"role":"AXButton","text":"Explorer Section: screenpipe [SSH: 100.73.206.126]","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"Explorer Section: screenpipe [SSH: 100.73.206.126]","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"SCREENPIPE [SSH: 100.73.206.126]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"#recycle","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"app","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"__pycache__","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"consumers","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"static","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"cli.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"docker-compose.yml","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"Dockerfile","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"main.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"requirements.txt","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"data","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"pipes","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite-shm","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite-wal","depth":27,"role_description":"text"},{"role":"AXButton","text":"Outline Section","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"OUTLINE","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"OUTLINE","depth":23,"role_description":"text"},{"role":"AXButton","text":"Timeline Section","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"TIMELINE","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"TIMELINE","depth":23,"role_description":"text"},{"role":"AXRadioButton","text":"pipe.md, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Untitled-2, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"docker-compose.yml, preview, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXStaticText","text":"","depth":29,"role_description":"text"},{"role":"AXTextArea","text":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","depth":28,"value":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","role_description":"editor","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","depth":29,"role_description":"text"},{"role":"AXRadioButton","text":"Getting started with Cla…, Editor Group 2","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXRadioButton","text":"Problems (⇧⌘M)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"PROBLEMS","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Output (⇧⌘U)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUTPUT","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Debug Console (⇧⌘Y)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"DEBUG CONSOLE","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Terminal (⌃`)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":true},{"role":"AXStaticText","text":"TERMINAL","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Ports","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"PORTS","depth":24,"role_description":"text"},{"role":"AXButton","text":"remote SSH: 100.73.206.126","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"SSH: 100.73.206.126","depth":17,"role_description":"text"},{"role":"AXButton","text":"No Problems","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXButton","text":"No Ports Forwarded","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXButton","text":"Notifications","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sign In","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"Sign In","depth":17,"role_description":"text"},{"role":"AXButton","text":"Screen Reader Optimized","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Info: Setting up SSH Host 100.73.206.126: Setting up SSH tunnel","depth":12,"role_description":"text"},{"role":"AXStaticText","text":"Command Succeeded","depth":12,"role_description":"text"},{"role":"AXButton","text":"Getting started with Claude agent SDK","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Session history","depth":18,"help_text":"Session history","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New session","depth":18,"help_text":"New session","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"how to start it","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Let me check what's in your working directory to understand what you're referring to.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"app\ndata\ndb.sqlite\npipes\n#recycle\n[rerun: b1]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"cli.py\nconsumers\ndb.py\ndocker-compose.yml\nDockerfile\nmain.py\nrequirements.txt\nstatic\nai-habits\nday-recap\nmeeting-summary\nstandup-update\ntime-breakdown\nvideo-export\n[rerun: b2]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"docker-compose.yml","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker-compose.yml","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"This is a Screenpipe app with a Docker Compose setup. To start it:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app\ndocker compose up -d","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"This builds the image (first run) and starts the container in the background","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"The app will be accessible at","depth":23,"role_description":"text"},{"role":"AXLink","text":"http://your-server-ip:8766","depth":24,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"http://your-server-ip:8766","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"To check if it's running:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker compose ps","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"To view logs:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker compose logs -f","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Make sure an","depth":22,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"file exists in","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"before starting — the compose file references one (","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"env_file: .env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"). If it's missing, the container will fail to start.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app/.env 2>/dev/null && echo \"exists\" || echo \"MISSING\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/.env\nexists\n[rerun: b3]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"The","depth":22,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"file exists, so you're good to go. Just run:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app && docker compose up -d","depth":24,"role_description":"text"},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"docker-compose.yml","depth":22,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker-compose.yml","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"I opened it but there are no data after I coppied it there. the idea behind this app is to have the data pasted form screenpipe mac app and only query it and work with it","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Let me check the current state of the data.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls -lh /volume1/screenpipe/db.sqlite && ls /volume1/screenpipe/data/ | head -20","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"-rwxrwxrwx 1 Adm1n admin 423M Apr 13 17:20 /volume1/screenpipe/db.sqlite\n2026-04-09\n2026-04-11\n2026-04-12\n[rerun: b1]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \".tables\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"_sqlx_migrations meetings \naudio_chunks memories \naudio_tags memories_fts \naudio_transcriptions memories_fts_config \naudio_transcriptions_fts memories_fts_data \naudio_transcriptions_fts_config memories_fts_docsize \naudio_transcriptions_fts_data memories_fts_idx \naudio_transcriptions_fts_docsize ocr_text \naudio_transcriptions_fts_idx pipe_executions \nelements pipe_scheduler_state \nelements_fts speaker_embeddings \nelements_fts_config speakers \nelements_fts_data tags \nelements_fts_docsize ui_events \nelements_fts_idx ui_events_fts \nframes ui_events_fts_config \nframes_fts ui_events_fts_data \nframes_fts_config ui_events_fts_docsize \nframes_fts_content ui_events_fts_idx \nframes_fts_data video_chunks \nframes_fts_docsize vision_tags \nframes_fts_idx\n[rerun: b2]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \"SELECT COUNT(*) FROM frames; SELECT COUNT(*) FROM ocr_text; SELECT COUNT(*) FROM audio_transcriptions;\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"6923\n5464\n3\n[rerun: b3]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"The data is there — 423MB database with 6,923 frames and 5,464 OCR records. The app just isn't running yet. Let me check what the app actually does and whether it can query this data properly.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"main.py","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"main.py","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"db.py","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"db.py","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"The data is actually there — the database has 423MB of data. The app just needs to be started. Let me start it:","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app && docker compose up -d 2>&1","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Exit code 1\npermission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Get \"http://%2Fvar%2Frun%2Fdocker.sock/v1.45/containers/json?all=1&filters=%7B%22label%22%3A%7B%22com.docker.compose.config-hash%22%3Atrue%2C%22com.docker.compose.project%3Dapp%22%3Atrue%7D%7D\": dial unix /var/run/docker.sock: connect: permission denied\n[rerun: b4]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"}]...
|
-1488709677556164301
|
-5962711149592734061
|
click
|
accessibility
|
NULL
|
Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧ Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧G)
Run and Debug (⇧⌘D)
Remote Explorer
Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update
2
Claude Code
Containers
EXPLORER
EXPLORER
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
SCREENPIPE [SSH: [IP_ADDRESS]]
#recycle
app
__pycache__
consumers
static
.env
cli.py
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
data
pipes
db.sqlite
db.sqlite-shm
db.sqlite-wal
Outline Section
OUTLINE
OUTLINE
Timeline Section
TIMELINE
TIMELINE
pipe.md, Editor Group 1
Untitled-2, Editor Group 1
docker-compose.yml, preview, Editor Group 1
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
Getting started with Cla…, Editor Group 2
Problems (⇧⌘M)
PROBLEMS
Output (⇧⌘U)
OUTPUT
Debug Console (⇧⌘Y)
DEBUG CONSOLE
Terminal (⌃`)
TERMINAL
Ports
PORTS
remote SSH: [IP_ADDRESS]
SSH: [IP_ADDRESS]
No Problems
0
0
No Ports Forwarded
0
Notifications
Sign In
Sign In
Screen Reader Optimized
Info: Setting up SSH Host [IP_ADDRESS]: Setting up SSH tunnel
Command Succeeded
Getting started with Claude agent SDK
Session history
New session
Message actions
how to start it
Thinking
Thinking
Let me check what's in your working directory to understand what you're referring to.
Bash
IN
ls /volume1/screenpipe
Copy code to clipboard
OUT
app
data
db.sqlite
pipes
#recycle
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes
Copy code to clipboard
OUT
cli.py
consumers
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
static
ai-habits
day-recap
meeting-summary
standup-update
time-breakdown
video-export
[rerun: b2]
Read
docker-compose.yml
docker-compose.yml
This is a Screenpipe app with a Docker Compose setup. To start it:
Copy code to clipboard
cd /volume1/screenpipe/app
docker compose up -d
This builds the image (first run) and starts the container in the background
The app will be accessible at
http://your-server-ip:8766
http://your-server-ip:8766
To check if it's running:
Copy code to clipboard
docker compose ps
To view logs:
Copy code to clipboard
docker compose logs -f
Make sure an
.env
file exists in
/volume1/screenpipe/app/
before starting — the compose file references one (
env_file: .env
). If it's missing, the container will fail to start.
Bash
IN
ls /volume1/screenpipe/app/.env 2>/dev/null && echo "exists" || echo "MISSING"
Copy code to clipboard
OUT
/volume1/screenpipe/app/.env
exists
[rerun: b3]
The
.env
file exists, so you're good to go. Just run:
Copy code to clipboard
cd /volume1/screenpipe/app && docker compose up -d
Message actions
docker-compose.yml
docker-compose.yml
I opened it but there are no data after I coppied it there. the idea behind this app is to have the data pasted form screenpipe mac app and only query it and work with it
Thinking
Thinking
Let me check the current state of the data.
Bash
IN
ls -lh /volume1/screenpipe/db.sqlite && ls /volume1/screenpipe/data/ | head -20
Copy code to clipboard
OUT
-rwxrwxrwx 1 Adm1n admin 423M Apr 13 17:20 /volume1/screenpipe/db.sqlite
2026-04-09
2026-04-11
2026-04-12
[rerun: b1]
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite ".tables"
Copy code to clipboard
OUT
_sqlx_migrations meetings
audio_chunks memories
audio_tags memories_fts
audio_transcriptions memories_fts_config
audio_transcriptions_fts memories_fts_data
audio_transcriptions_fts_config memories_fts_docsize
audio_transcriptions_fts_data memories_fts_idx
audio_transcriptions_fts_docsize ocr_text
audio_transcriptions_fts_idx pipe_executions
elements pipe_scheduler_state
elements_fts speaker_embeddings
elements_fts_config speakers
elements_fts_data tags
elements_fts_docsize ui_events
elements_fts_idx ui_events_fts
frames ui_events_fts_config
frames_fts ui_events_fts_data
frames_fts_config ui_events_fts_docsize
frames_fts_content ui_events_fts_idx
frames_fts_data video_chunks
frames_fts_docsize vision_tags
frames_fts_idx
[rerun: b2]
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT COUNT(*) FROM frames; SELECT COUNT(*) FROM ocr_text; SELECT COUNT(*) FROM audio_transcriptions;"
Copy code to clipboard
OUT
6923
5464
3
[rerun: b3]
The data is there — 423MB database with 6,923 frames and 5,464 OCR records. The app just isn't running yet. Let me check what the app actually does and whether it can query this data properly.
Read
main.py
main.py
Read
db.py
db.py
The data is actually there — the database has 423MB of data. The app just needs to be started. Let me start it:
Bash
IN
cd /volume1/screenpipe/app && docker compose up -d 2>&1
Copy code to clipboard
OUT
Exit code 1
permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Get "http://%2Fvar%2Frun%2Fdocker.sock/v1.45/containers/json?all=1&filters=%7B%22label%22%3A%7B%22com.docker.compose.config-hash%22%3Atrue%2C%22com.docker.compose.project%3Dapp%22%3Atrue%7D%7D": dial unix /var/run/docker.sock: connect: permission denied
[rerun: b4]
Bash...
|
7608
|
|
7610
|
142
|
22
|
2026-04-13T16:11:14.911478+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096674911_m1.jpg...
|
Code
|
Getting started with Cla… — screenpipe [SSH: 100.7 Getting started with Cla… — screenpipe [SSH: 100.73.206.126]...
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧ Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧G)
Run and Debug (⇧⌘D)
Remote Explorer
Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update
2
Claude Code
Containers
EXPLORER
EXPLORER
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
SCREENPIPE [SSH: [IP_ADDRESS]]
#recycle
app
__pycache__
consumers
static
.env
cli.py
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
data
pipes
db.sqlite
db.sqlite-shm
db.sqlite-wal
Outline Section
OUTLINE
OUTLINE
Timeline Section
TIMELINE
TIMELINE
pipe.md, Editor Group 1
Untitled-2, Editor Group 1
docker-compose.yml, preview, Editor Group 1
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
Getting started with Cla…, Editor Group 2
Problems (⇧⌘M)
PROBLEMS
Output (⇧⌘U)
OUTPUT
Debug Console (⇧⌘Y)
DEBUG CONSOLE
Terminal (⌃`)
TERMINAL
Ports
PORTS
remote SSH: [IP_ADDRESS]
SSH: [IP_ADDRESS]
No Problems
0
0
No Ports Forwarded
0
Notifications
Sign In
Sign In
Screen Reader Optimized
Info: Setting up SSH Host [IP_ADDRESS]: Setting up SSH tunnel
Command Succeeded
Getting started with Claude agent SDK
Session history
New session
Message actions
how to start it
Thinking
Thinking
Let me check what's in your working directory to understand what you're referring to.
Bash
IN
ls /volume1/screenpipe
Copy code to clipboard
OUT
app
data
db.sqlite
pipes
#recycle
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes
Copy code to clipboard
OUT
cli.py
consumers
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
static
ai-habits
day-recap
meeting-summary
standup-update
time-breakdown
video-export
[rerun: b2]
Read
docker-compose.yml
docker-compose.yml
This is a Screenpipe app with a Docker Compose setup. To start it:
Copy code to clipboard
cd /volume1/screenpipe/app
docker compose up -d
This builds the image (first run) and starts the container in the background
The app will be accessible at
[URL_WITH_CREDENTIALS]
sudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d
Once running, the dashboard will be at
http://your-nas-ip:8766
http://your-nas-ip:8766
and it will query the data you already copied — the database has 6,923 frames and 5,464 OCR records ready to go.
Message actions
docker-compose.yml
docker-compose.yml
I have ugos ugreen nas. I can see the ui but it is empty. No data. Also when I open it there is defsault today, lets make default yesterday.
Thinking
Thinking
Let me check why data isn't showing and look at the frontend.
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT DATE(timestamp) as d, COUNT(*) FROM frames GROUP BY d ORDER BY d DESC LIMIT 10;"
Copy code to clipboard
OUT
2026-04-13|2643
2026-04-12|2455
2026-04-11|1302
2026-04-09|523
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app/static/
Copy code to clipboard...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"Explorer (⇧⌘E)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":true},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Search (⇧⌘F)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Source Control (⌃⇧G)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Run and Debug (⇧⌘D)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Remote Explorer","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"2","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Claude Code","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Containers","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"EXPLORER","depth":17,"role_description":"heading"},{"role":"AXStaticText","text":"EXPLORER","depth":18,"role_description":"text"},{"role":"AXButton","text":"Explorer Section: screenpipe [SSH: 100.73.206.126]","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"Explorer Section: screenpipe [SSH: 100.73.206.126]","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"SCREENPIPE [SSH: 100.73.206.126]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"#recycle","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"app","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"__pycache__","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"consumers","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"static","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"cli.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"docker-compose.yml","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"Dockerfile","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"main.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"requirements.txt","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"data","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"pipes","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite-shm","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite-wal","depth":27,"role_description":"text"},{"role":"AXButton","text":"Outline Section","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"OUTLINE","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"OUTLINE","depth":23,"role_description":"text"},{"role":"AXButton","text":"Timeline Section","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"TIMELINE","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"TIMELINE","depth":23,"role_description":"text"},{"role":"AXRadioButton","text":"pipe.md, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Untitled-2, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"docker-compose.yml, preview, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXStaticText","text":"","depth":29,"role_description":"text"},{"role":"AXTextArea","text":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","depth":28,"value":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","role_description":"editor","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","depth":29,"role_description":"text"},{"role":"AXRadioButton","text":"Getting started with Cla…, Editor Group 2","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXRadioButton","text":"Problems (⇧⌘M)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"PROBLEMS","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Output (⇧⌘U)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUTPUT","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Debug Console (⇧⌘Y)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"DEBUG CONSOLE","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Terminal (⌃`)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":true},{"role":"AXStaticText","text":"TERMINAL","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Ports","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"PORTS","depth":24,"role_description":"text"},{"role":"AXButton","text":"remote SSH: 100.73.206.126","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"SSH: 100.73.206.126","depth":17,"role_description":"text"},{"role":"AXButton","text":"No Problems","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXButton","text":"No Ports Forwarded","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXButton","text":"Notifications","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sign In","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"Sign In","depth":17,"role_description":"text"},{"role":"AXButton","text":"Screen Reader Optimized","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Info: Setting up SSH Host 100.73.206.126: Setting up SSH tunnel","depth":12,"role_description":"text"},{"role":"AXStaticText","text":"Command Succeeded","depth":12,"role_description":"text"},{"role":"AXButton","text":"Getting started with Claude agent SDK","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Session history","depth":18,"help_text":"Session history","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New session","depth":18,"help_text":"New session","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"how to start it","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Let me check what's in your working directory to understand what you're referring to.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"app\ndata\ndb.sqlite\npipes\n#recycle\n[rerun: b1]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"cli.py\nconsumers\ndb.py\ndocker-compose.yml\nDockerfile\nmain.py\nrequirements.txt\nstatic\nai-habits\nday-recap\nmeeting-summary\nstandup-update\ntime-breakdown\nvideo-export\n[rerun: b2]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"docker-compose.yml","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker-compose.yml","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"This is a Screenpipe app with a Docker Compose setup. To start it:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app\ndocker compose up -d","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"This builds the image (first run) and starts the container in the background","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"The app will be accessible at","depth":23,"role_description":"text"},{"role":"AXLink","text":"http://your-server-ip:8766","depth":24,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"http://your-server-ip:8766","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"To check if it's running:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker compose ps","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"To view logs:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker compose logs -f","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Make sure an","depth":22,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"file exists in","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"before starting — the compose file references one (","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"env_file: .env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"). If it's missing, the container will fail to start.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app/.env 2>/dev/null && echo \"exists\" || echo \"MISSING\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/.env\nexists\n[rerun: b3]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"The","depth":22,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"file exists, so you're good to go. Just run:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app && docker compose up -d","depth":24,"role_description":"text"},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"docker-compose.yml","depth":22,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker-compose.yml","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"I opened it but there are no data after I coppied it there. the idea behind this app is to have the data pasted form screenpipe mac app and only query it and work with it","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Let me check the current state of the data.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls -lh /volume1/screenpipe/db.sqlite && ls /volume1/screenpipe/data/ | head -20","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"-rwxrwxrwx 1 Adm1n admin 423M Apr 13 17:20 /volume1/screenpipe/db.sqlite\n2026-04-09\n2026-04-11\n2026-04-12\n[rerun: b1]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \".tables\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"_sqlx_migrations meetings \naudio_chunks memories \naudio_tags memories_fts \naudio_transcriptions memories_fts_config \naudio_transcriptions_fts memories_fts_data \naudio_transcriptions_fts_config memories_fts_docsize \naudio_transcriptions_fts_data memories_fts_idx \naudio_transcriptions_fts_docsize ocr_text \naudio_transcriptions_fts_idx pipe_executions \nelements pipe_scheduler_state \nelements_fts speaker_embeddings \nelements_fts_config speakers \nelements_fts_data tags \nelements_fts_docsize ui_events \nelements_fts_idx ui_events_fts \nframes ui_events_fts_config \nframes_fts ui_events_fts_data \nframes_fts_config ui_events_fts_docsize \nframes_fts_content ui_events_fts_idx \nframes_fts_data video_chunks \nframes_fts_docsize vision_tags \nframes_fts_idx\n[rerun: b2]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \"SELECT COUNT(*) FROM frames; SELECT COUNT(*) FROM ocr_text; SELECT COUNT(*) FROM audio_transcriptions;\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"6923\n5464\n3\n[rerun: b3]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"The data is there — 423MB database with 6,923 frames and 5,464 OCR records. The app just isn't running yet. Let me check what the app actually does and whether it can query this data properly.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"main.py","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"main.py","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"db.py","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"db.py","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"The data is actually there — the database has 423MB of data. The app just needs to be started. Let me start it:","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app && docker compose up -d 2>&1","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Exit code 1\npermission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Get \"http://%2Fvar%2Frun%2Fdocker.sock/v1.45/containers/json?all=1&filters=%7B%22label%22%3A%7B%22com.docker.compose.config-hash%22%3Atrue%2C%22com.docker.compose.project%3Dapp%22%3Atrue%7D%7D\": dial unix /var/run/docker.sock: connect: permission denied\n[rerun: b4]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d 2>&1","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Exit code 1\nsudo: a terminal is required to read the password; either use the -S option to read from standard input or configure an askpass helper\nsudo: a password is required\n[rerun: b5]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"groups && id","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"admin users ughomeusers Media Social\nuid=1000(Adm1n) gid=10(admin) groups=10(admin),100(users),133(ughomeusers),1001(Media),1002(Social)\n[rerun: b6]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"You need to run Docker with elevated privileges. You're not in the","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"docker","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"group. There are two options:","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Option 1 — Run via Synology's Container Manager (DSM GUI)","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Open DSM → Container Manager → Project → Create project → point it to","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/docker-compose.yml","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Option 2 — Add yourself to the docker group (requires admin/root once)","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Open an SSH terminal as root (or via DSM terminal with admin):","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"sudo synogroup --add docker Adm1n\n# then log out and back in, then:\ncd /volume1/screenpipe/app && docker compose up -d","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Option 3 — Run it directly from an SSH session with sudo","depth":23,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"ssh admin@your-nas-ip\nsudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Once running, the dashboard will be at","depth":22,"role_description":"text"},{"role":"AXLink","text":"http://your-nas-ip:8766","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"http://your-nas-ip:8766","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"and it will query the data you already copied — the database has 6,923 frames and 5,464 OCR records ready to go.","depth":22,"role_description":"text"},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"docker-compose.yml","depth":22,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker-compose.yml","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"I have ugos ugreen nas. I can see the ui but it is empty. No data. Also when I open it there is defsault today, lets make default yesterday.","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Let me check why data isn't showing and look at the frontend.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \"SELECT DATE(timestamp) as d, COUNT(*) FROM frames GROUP BY d ORDER BY d DESC LIMIT 10;\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"2026-04-13|2643\n2026-04-12|2455\n2026-04-11|1302\n2026-04-09|523\n[rerun: b1]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app/static/","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
2649086119971633594
|
-8844891757351365101
|
click
|
accessibility
|
NULL
|
Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧ Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧G)
Run and Debug (⇧⌘D)
Remote Explorer
Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update
2
Claude Code
Containers
EXPLORER
EXPLORER
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
SCREENPIPE [SSH: [IP_ADDRESS]]
#recycle
app
__pycache__
consumers
static
.env
cli.py
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
data
pipes
db.sqlite
db.sqlite-shm
db.sqlite-wal
Outline Section
OUTLINE
OUTLINE
Timeline Section
TIMELINE
TIMELINE
pipe.md, Editor Group 1
Untitled-2, Editor Group 1
docker-compose.yml, preview, Editor Group 1
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
Getting started with Cla…, Editor Group 2
Problems (⇧⌘M)
PROBLEMS
Output (⇧⌘U)
OUTPUT
Debug Console (⇧⌘Y)
DEBUG CONSOLE
Terminal (⌃`)
TERMINAL
Ports
PORTS
remote SSH: [IP_ADDRESS]
SSH: [IP_ADDRESS]
No Problems
0
0
No Ports Forwarded
0
Notifications
Sign In
Sign In
Screen Reader Optimized
Info: Setting up SSH Host [IP_ADDRESS]: Setting up SSH tunnel
Command Succeeded
Getting started with Claude agent SDK
Session history
New session
Message actions
how to start it
Thinking
Thinking
Let me check what's in your working directory to understand what you're referring to.
Bash
IN
ls /volume1/screenpipe
Copy code to clipboard
OUT
app
data
db.sqlite
pipes
#recycle
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes
Copy code to clipboard
OUT
cli.py
consumers
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
static
ai-habits
day-recap
meeting-summary
standup-update
time-breakdown
video-export
[rerun: b2]
Read
docker-compose.yml
docker-compose.yml
This is a Screenpipe app with a Docker Compose setup. To start it:
Copy code to clipboard
cd /volume1/screenpipe/app
docker compose up -d
This builds the image (first run) and starts the container in the background
The app will be accessible at
[URL_WITH_CREDENTIALS]
sudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d
Once running, the dashboard will be at
http://your-nas-ip:8766
http://your-nas-ip:8766
and it will query the data you already copied — the database has 6,923 frames and 5,464 OCR records ready to go.
Message actions
docker-compose.yml
docker-compose.yml
I have ugos ugreen nas. I can see the ui but it is empty. No data. Also when I open it there is defsault today, lets make default yesterday.
Thinking
Thinking
Let me check why data isn't showing and look at the frontend.
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT DATE(timestamp) as d, COUNT(*) FROM frames GROUP BY d ORDER BY d DESC LIMIT 10;"
Copy code to clipboard
OUT
2026-04-13|2643
2026-04-12|2455
2026-04-11|1302
2026-04-09|523
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app/static/
Copy code to clipboard...
|
NULL
|
|
7613
|
142
|
25
|
2026-04-13T16:11:52.060130+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096712060_m1.jpg...
|
Firefox
|
Поръчка — Personal
|
True
|
xtreme.bg/shop/checkout.php
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Поръчка
Поръчка
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
479.52€ / 937.86 лв.
479.52€ / 937.86 лв.
Всички Категории
Всички Категории
Търси в Продуктите ...
Compares
0
Сравни
Wishlists
0
Любими
Поръчка
Поръчка
Начало
Начало
»
Поръчка
Поръчка
Поръчка
ПОРЪЧКА КАТО РЕГИСТРИРАН
|
УЛЕСНЕНА ПОРЪЧКА
Подробности за Доставката
Име и Фамилия
Lukáš Koválik
person
Телефон
Моля, сверете внимателно въведения номер !
phone
Изберете начин на Доставка
Получаване от нашия магазин.
Безплатна Доставка
0.00 €
Офис на Спиди.
Безплатна Доставка
0.00 €
До Адрес.
Безплатна Доставка
0.00 €
Населено Място
Изберте от падащото меню след като започнете да пишете (търсене)
Офис на Спиди
Изберте от падащото меню след като започнете да пишете (търсене)
Изберете начин на Плащане
Наложен Платеж при получаване в Брой или с Карта
Кредитна / Дебитна Карта - Плащане онлайн
Банков Превод
Купи на Кредит
Ако не искате да ви се обадим за потвърждение напишете
„
Без Обаждане
“
в полето Инструкции
Инструкции
Допълнителни Инструкции към поръчката
Опционално
Искам Фактура
Съгласен съм с
Общите условия
Общите условия
ЗАВЪРШИ ПОРЪЧКАТА
Обобщение на Поръчката
1 Артикул
Скрий Детайлите
expand_less
Твърд диск, Western Digital Red 6TB Plus ( 3.5
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 RPM, SATA 6Gb/s )
2
x
€239
76
/
468
93
лв
€479
52
/
937
86
лв
Сума
€479
52
/
937
86
лв
Доставка
0.00€
Такса Наложен Платеж
7.19€
Общо
486.71€
Всички цени са с включено ДДС
СИГУРНОСТ
УСЛОВИЯ ЗА ДОСТАВКА
РЕКЛАМАЦИИ
Запишете се за нашият Бюлетин
Запишете се за нашият Бюлетин
Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.
[EMAIL]
Запиши се
Facebook
Twitter
Instagram
xtreme
xtreme
Ако имате въпроси свържете се с нас!
Ако имате въпроси свържете се с нас!
[EMAIL]
[EMAIL]
+359 886 177 222
+359 886 177 222
Информация
Информация
Доставка
Доставка
Условия
Условия
Рекламация
Рекламация
Контакти
Контакти
За Нас
За Нас
Потребител
Потребител
Профил
Профил
История на Поръчките
История на Поръчките
Любими
Любими
GDPR
GDPR
Лични Данни
Лични Данни
Методи за Плащане
Методи за Плащане
Наложен Платеж
Кредитна/Дебитна Карта
Банков Превод
На изплащане ПБ Лични Финанси
Copyright © 2023
Xtreme.bg
Xtreme.bg
- Всички права запазени.
Онлайн магазин вървящ на
XCore
XCore...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Inbox - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Shameless • HBO Max","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Shameless • HBO Max","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Machines - Tailscale","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Machines - Tailscale","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe Dashboard","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe Dashboard","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Поръчка","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Поръчка","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"google maps timeline export - Google Search","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"google maps timeline export - Google Search","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New Tab","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"0886 177 222","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0886 177 222","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"info@xtreme.bg","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"info@xtreme.bg","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"facebook","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"twitter","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"instagram","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"xtreme","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"НАЧАЛО","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"НАЧАЛО","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"МАГАЗИН","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"МАГАЗИН","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"БЛОГ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"БЛОГ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"КОНТАКТИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"КОНТАКТИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"РЕКЛАМАЦИИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"РЕКЛАМАЦИИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Lukáš Koválik","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":" 479.52€ / 937.86 лв.","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"479.52€ / 937.86 лв.","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Всички Категории","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Всички Категории","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Търси в Продуктите ...","depth":11,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Compares","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Сравни","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Wishlists","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Любими","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Поръчка","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Поръчка","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Начало","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Начало","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"»","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Поръчка","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Поръчка","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Поръчка","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ПОРЪЧКА КАТО РЕГИСТРИРАН","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"|","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"УЛЕСНЕНА ПОРЪЧКА","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Подробности за Доставката","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Име и Фамилия","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Lukáš Koválik","depth":12,"value":"Lukáš Koválik","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"person","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Телефон","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Моля, сверете внимателно въведения номер !","depth":12,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"phone","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Изберете начин на Доставка","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Получаване от нашия магазин.","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Безплатна Доставка","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.00 €","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Офис на Спиди.","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Безплатна Доставка","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.00 €","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"До Адрес.","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Безплатна Доставка","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.00 €","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Населено Място","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Изберте от падащото меню след като започнете да пишете (търсене)","depth":12,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Офис на Спиди","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Изберте от падащото меню след като започнете да пишете (търсене)","depth":12,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Изберете начин на Плащане","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Наложен Платеж при получаване в Брой или с Карта","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Кредитна / Дебитна Карта - Плащане онлайн","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Банков Превод","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Купи на Кредит","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ако не искате да ви се обадим за потвърждение напишете","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"„","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Без Обаждане","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"“","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"в полето Инструкции","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Инструкции","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextArea","text":"Допълнителни Инструкции към поръчката","depth":11,"help_text":"","role_description":"text entry area","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Опционално","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Искам Фактура","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Съгласен съм с","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Общите условия","depth":13,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Общите условия","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"ЗАВЪРШИ ПОРЪЧКАТА","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Обобщение на Поръчката","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1 Артикул","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Скрий Детайлите","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"expand_less","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Твърд диск, Western Digital Red 6TB Plus ( 3.5","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Твърд диск, Western Digital Red 6TB Plus ( 3.5\", 256MB, 5400 RPM, SATA 6Gb/s )","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"x","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€239","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"76","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"468","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"93","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€479","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"52","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"937","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"86","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Сума","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€479","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"52","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"937","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"86","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Доставка","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.00€","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Такса Наложен Платеж","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"7.19€","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Общо","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"486.71€","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Всички цени са с включено ДДС","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"СИГУРНОСТ","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"УСЛОВИЯ ЗА ДОСТАВКА","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"РЕКЛАМАЦИИ","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Запишете се за нашият Бюлетин","depth":7,"bounds":{"left":0.0,"top":0.011111111,"width":0.38541666,"height":0.02},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Запишете се за нашият Бюлетин","depth":8,"bounds":{"left":0.0,"top":0.006666667,"width":0.19930555,"height":0.028888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.","depth":8,"bounds":{"left":0.0,"top":0.032222223,"width":0.34097221,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"kovaliklukas@gmail.com","depth":8,"bounds":{"left":0.35069445,"top":0.015555556,"width":0.46805555,"height":0.053333335},"value":"kovaliklukas@gmail.com","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Запиши се","depth":8,"bounds":{"left":0.81875,"top":0.022222223,"width":0.09166667,"height":0.04},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Facebook","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Twitter","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Instagram","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"xtreme","depth":9,"bounds":{"left":0.0,"top":0.112222224,"width":0.3236111,"height":0.08888889},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"xtreme","depth":10,"bounds":{"left":0.0,"top":0.17333333,"width":0.27847221,"height":0.026666667},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"bounds":{"left":0.0,"top":0.23333333,"width":0.027777778,"height":0.044444446},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Ако имате въпроси свържете се с нас!","depth":10,"bounds":{"left":0.0,"top":0.23111111,"width":0.2923611,"height":0.027777778},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ако имате въпроси свържете се с нас!","depth":11,"bounds":{"left":0.0,"top":0.23444444,"width":0.17986111,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"info@xtreme.bg","depth":11,"bounds":{"left":0.0,"top":0.28,"width":0.06944445,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"info@xtreme.bg","depth":12,"bounds":{"left":0.0,"top":0.28,"width":0.06944445,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"+359 886 177 222","depth":10,"bounds":{"left":0.0,"top":0.32222223,"width":0.10069445,"height":0.026666667},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"+359 886 177 222","depth":11,"bounds":{"left":0.0,"top":0.32222223,"width":0.10069445,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Информация","depth":9,"bounds":{"left":0.25416666,"top":0.112222224,"width":0.32291666,"height":0.02111111},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Информация","depth":10,"bounds":{"left":0.25416666,"top":0.10888889,"width":0.075,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Доставка","depth":11,"bounds":{"left":0.25416666,"top":0.15333334,"width":0.044444446,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Доставка","depth":12,"bounds":{"left":0.25416666,"top":0.15333334,"width":0.044444446,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Условия","depth":11,"bounds":{"left":0.25416666,"top":0.18111111,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Условия","depth":12,"bounds":{"left":0.25416666,"top":0.18111111,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Рекламация","depth":11,"bounds":{"left":0.25416666,"top":0.21,"width":0.056944445,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Рекламация","depth":12,"bounds":{"left":0.25416666,"top":0.21,"width":0.056944445,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Контакти","depth":11,"bounds":{"left":0.25416666,"top":0.23777778,"width":0.043055557,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Контакти","depth":12,"bounds":{"left":0.25416666,"top":0.23777778,"width":0.043055557,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"За Нас","depth":11,"bounds":{"left":0.25416666,"top":0.26666668,"width":0.030555556,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"За Нас","depth":12,"bounds":{"left":0.25416666,"top":0.26666668,"width":0.030555556,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Потребител","depth":9,"bounds":{"left":0.59791666,"top":0.112222224,"width":0.3236111,"height":0.02111111},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Потребител","depth":10,"bounds":{"left":0.59791666,"top":0.10888889,"width":0.06736111,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Профил","depth":11,"bounds":{"left":0.59791666,"top":0.15333334,"width":0.036805555,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Профил","depth":12,"bounds":{"left":0.59791666,"top":0.15333334,"width":0.036805555,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"История на Поръчките","depth":11,"bounds":{"left":0.59791666,"top":0.18111111,"width":0.104166664,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"История на Поръчките","depth":12,"bounds":{"left":0.59791666,"top":0.18111111,"width":0.104166664,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Любими","depth":11,"bounds":{"left":0.59791666,"top":0.21,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Любими","depth":12,"bounds":{"left":0.59791666,"top":0.21,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"GDPR","depth":11,"bounds":{"left":0.59791666,"top":0.23777778,"width":0.025,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"GDPR","depth":12,"bounds":{"left":0.59791666,"top":0.23777778,"width":0.025,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Лични Данни","depth":11,"bounds":{"left":0.59791666,"top":0.26666668,"width":0.061805554,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Лични Данни","depth":12,"bounds":{"left":0.59791666,"top":0.26666668,"width":0.061805554,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Методи за Плащане","depth":9,"bounds":{"left":0.9423611,"top":0.112222224,"width":0.057638884,"height":0.027777778},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Методи за Плащане","depth":10,"bounds":{"left":0.9423611,"top":0.112222224,"width":0.057638884,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Наложен Платеж","depth":11,"bounds":{"left":0.9423611,"top":0.16111112,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Кредитна/Дебитна Карта","depth":11,"bounds":{"left":0.9423611,"top":0.18888889,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Банков Превод","depth":11,"bounds":{"left":0.9423611,"top":0.24444444,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"На изплащане ПБ Лични Финанси","depth":11,"bounds":{"left":0.9423611,"top":0.27222222,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Copyright © 2023","depth":8,"bounds":{"left":0.39097223,"top":0.39,"width":0.08055556,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Xtreme.bg","depth":8,"bounds":{"left":0.47152779,"top":0.39,"width":0.046527777,"height":0.02111111},"help_text":"Xtreme Online Store","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Xtreme.bg","depth":9,"bounds":{"left":0.47152779,"top":0.39,"width":0.046527777,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"- Всички права запазени.","depth":8,"bounds":{"left":0.51805556,"top":0.39,"width":0.11875,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Онлайн магазин вървящ на","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"XCore","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"XCore","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
7513508545422832437
|
-3340185164838032624
|
click
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Поръчка
Поръчка
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
479.52€ / 937.86 лв.
479.52€ / 937.86 лв.
Всички Категории
Всички Категории
Търси в Продуктите ...
Compares
0
Сравни
Wishlists
0
Любими
Поръчка
Поръчка
Начало
Начало
»
Поръчка
Поръчка
Поръчка
ПОРЪЧКА КАТО РЕГИСТРИРАН
|
УЛЕСНЕНА ПОРЪЧКА
Подробности за Доставката
Име и Фамилия
Lukáš Koválik
person
Телефон
Моля, сверете внимателно въведения номер !
phone
Изберете начин на Доставка
Получаване от нашия магазин.
Безплатна Доставка
0.00 €
Офис на Спиди.
Безплатна Доставка
0.00 €
До Адрес.
Безплатна Доставка
0.00 €
Населено Място
Изберте от падащото меню след като започнете да пишете (търсене)
Офис на Спиди
Изберте от падащото меню след като започнете да пишете (търсене)
Изберете начин на Плащане
Наложен Платеж при получаване в Брой или с Карта
Кредитна / Дебитна Карта - Плащане онлайн
Банков Превод
Купи на Кредит
Ако не искате да ви се обадим за потвърждение напишете
„
Без Обаждане
“
в полето Инструкции
Инструкции
Допълнителни Инструкции към поръчката
Опционално
Искам Фактура
Съгласен съм с
Общите условия
Общите условия
ЗАВЪРШИ ПОРЪЧКАТА
Обобщение на Поръчката
1 Артикул
Скрий Детайлите
expand_less
Твърд диск, Western Digital Red 6TB Plus ( 3.5
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 RPM, SATA 6Gb/s )
2
x
€239
76
/
468
93
лв
€479
52
/
937
86
лв
Сума
€479
52
/
937
86
лв
Доставка
0.00€
Такса Наложен Платеж
7.19€
Общо
486.71€
Всички цени са с включено ДДС
СИГУРНОСТ
УСЛОВИЯ ЗА ДОСТАВКА
РЕКЛАМАЦИИ
Запишете се за нашият Бюлетин
Запишете се за нашият Бюлетин
Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.
[EMAIL]
Запиши се
Facebook
Twitter
Instagram
xtreme
xtreme
Ако имате въпроси свържете се с нас!
Ако имате въпроси свържете се с нас!
[EMAIL]
[EMAIL]
+359 886 177 222
+359 886 177 222
Информация
Информация
Доставка
Доставка
Условия
Условия
Рекламация
Рекламация
Контакти
Контакти
За Нас
За Нас
Потребител
Потребител
Профил
Профил
История на Поръчките
История на Поръчките
Любими
Любими
GDPR
GDPR
Лични Данни
Лични Данни
Методи за Плащане
Методи за Плащане
Наложен Платеж
Кредитна/Дебитна Карта
Банков Превод
На изплащане ПБ Лични Финанси
Copyright © 2023
Xtreme.bg
Xtreme.bg
- Всички права запазени.
Онлайн магазин вървящ на
XCore
XCore...
|
7612
|
|
7614
|
142
|
26
|
2026-04-13T16:12:00.238230+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096720238_m1.jpg...
|
Firefox
|
Поръчка — Personal
|
True
|
xtreme.bg/shop/checkout.php
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Поръчка
Поръчка
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
479.52€ / 937.86 лв.
479.52€ / 937.86 лв.
Всички Категории
Всички Категории
Търси в Продуктите ...
Compares
0
Сравни
Wishlists
0
Любими
Поръчка
Поръчка
Начало
Начало
»
Поръчка
Поръчка
Поръчка
ПОРЪЧКА КАТО РЕГИСТРИРАН
|
УЛЕСНЕНА ПОРЪЧКА
Подробности за Доставката
Име и Фамилия
Lukáš Koválik
person
Телефон
Моля, сверете внимателно въведения номер !
phone
Изберете начин на Доставка
Получаване от нашия магазин.
Безплатна Доставка
0.00 €
Офис на Спиди.
Безплатна Доставка
0.00 €
До Адрес.
Безплатна Доставка
0.00 €
Населено Място
Изберте от падащото меню след като започнете да пишете (търсене)
Офис на Спиди
Изберте от падащото меню след като започнете да пишете (търсене)
Изберете начин на Плащане
Наложен Платеж при получаване в Брой или с Карта
Кредитна / Дебитна Карта - Плащане онлайн
Банков Превод
Купи на Кредит
Ако не искате да ви се обадим за потвърждение напишете
„
Без Обаждане
“
в полето Инструкции
Инструкции
Допълнителни Инструкции към поръчката
Опционално
Искам Фактура
Съгласен съм с
Общите условия
Общите условия
ЗАВЪРШИ ПОРЪЧКАТА
Обобщение на Поръчката
1 Артикул
Скрий Детайлите
expand_less
Твърд диск, Western Digital Red 6TB Plus ( 3.5
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 RPM, SATA 6Gb/s )
2
x
€239
76
/
468
93
лв
€479
52
/
937
86
лв
Сума
€479
52
/
937
86
лв
Доставка
0.00€
Общо
479.52€
Всички цени са с включено ДДС
СИГУРНОСТ
УСЛОВИЯ ЗА ДОСТАВКА
РЕКЛАМАЦИИ
Запишете се за нашият Бюлетин
Запишете се за нашият Бюлетин
Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.
[EMAIL]
Запиши се
Facebook
Twitter
Instagram
xtreme
xtreme
Ако имате въпроси свържете се с нас!
Ако имате въпроси свържете се с нас!
[EMAIL]
[EMAIL]
+359 886 177 222
+359 886 177 222
Информация
Информация
Доставка
Доставка
Условия
Условия
Рекламация
Рекламация
Контакти
Контакти
За Нас
За Нас
Потребител
Потребител
Профил
Профил
История на Поръчките
История на Поръчките
Любими
Любими
GDPR
GDPR
Лични Данни
Лични Данни
Методи за Плащане
Методи за Плащане
Наложен Платеж
Кредитна/Дебитна Карта
Банков Превод
На изплащане ПБ Лични Финанси
Copyright © 2023
Xtreme.bg
Xtreme.bg
- Всички права запазени.
Онлайн магазин вървящ на
XCore
XCore...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Inbox - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Shameless • HBO Max","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Shameless • HBO Max","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Machines - Tailscale","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Machines - Tailscale","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe Dashboard","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe Dashboard","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Поръчка","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Поръчка","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"google maps timeline export - Google Search","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"google maps timeline export - Google Search","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New Tab","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"0886 177 222","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0886 177 222","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"info@xtreme.bg","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"info@xtreme.bg","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"facebook","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"twitter","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"instagram","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"xtreme","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"НАЧАЛО","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"НАЧАЛО","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"МАГАЗИН","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"МАГАЗИН","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"БЛОГ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"БЛОГ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"КОНТАКТИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"КОНТАКТИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"РЕКЛАМАЦИИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"РЕКЛАМАЦИИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Lukáš Koválik","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":" 479.52€ / 937.86 лв.","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"479.52€ / 937.86 лв.","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Всички Категории","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Всички Категории","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Търси в Продуктите ...","depth":11,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Compares","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Сравни","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Wishlists","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Любими","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Поръчка","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Поръчка","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Начало","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Начало","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"»","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Поръчка","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Поръчка","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Поръчка","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ПОРЪЧКА КАТО РЕГИСТРИРАН","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"|","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"УЛЕСНЕНА ПОРЪЧКА","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Подробности за Доставката","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Име и Фамилия","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Lukáš Koválik","depth":12,"value":"Lukáš Koválik","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"person","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Телефон","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Моля, сверете внимателно въведения номер !","depth":12,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"phone","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Изберете начин на Доставка","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Получаване от нашия магазин.","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Безплатна Доставка","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.00 €","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Офис на Спиди.","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Безплатна Доставка","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.00 €","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"До Адрес.","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Безплатна Доставка","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.00 €","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Населено Място","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Изберте от падащото меню след като започнете да пишете (търсене)","depth":12,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Офис на Спиди","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Изберте от падащото меню след като започнете да пишете (търсене)","depth":12,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Изберете начин на Плащане","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Наложен Платеж при получаване в Брой или с Карта","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Кредитна / Дебитна Карта - Плащане онлайн","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Банков Превод","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Купи на Кредит","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ако не искате да ви се обадим за потвърждение напишете","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"„","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Без Обаждане","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"“","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"в полето Инструкции","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Инструкции","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextArea","text":"Допълнителни Инструкции към поръчката","depth":11,"help_text":"","role_description":"text entry area","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Опционално","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Искам Фактура","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Съгласен съм с","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Общите условия","depth":13,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Общите условия","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"ЗАВЪРШИ ПОРЪЧКАТА","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Обобщение на Поръчката","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1 Артикул","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Скрий Детайлите","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"expand_less","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Твърд диск, Western Digital Red 6TB Plus ( 3.5","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Твърд диск, Western Digital Red 6TB Plus ( 3.5\", 256MB, 5400 RPM, SATA 6Gb/s )","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"x","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€239","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"76","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"468","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"93","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€479","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"52","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"937","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"86","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Сума","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€479","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"52","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"937","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"86","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Доставка","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.00€","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Общо","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"479.52€","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Всички цени са с включено ДДС","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"СИГУРНОСТ","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"УСЛОВИЯ ЗА ДОСТАВКА","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"РЕКЛАМАЦИИ","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Запишете се за нашият Бюлетин","depth":7,"bounds":{"left":0.0,"top":0.011111111,"width":0.38541666,"height":0.02},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Запишете се за нашият Бюлетин","depth":8,"bounds":{"left":0.0,"top":0.006666667,"width":0.19930555,"height":0.028888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.","depth":8,"bounds":{"left":0.0,"top":0.032222223,"width":0.34097221,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"kovaliklukas@gmail.com","depth":8,"bounds":{"left":0.35069445,"top":0.015555556,"width":0.46805555,"height":0.053333335},"value":"kovaliklukas@gmail.com","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Запиши се","depth":8,"bounds":{"left":0.81875,"top":0.022222223,"width":0.09166667,"height":0.04},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Facebook","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Twitter","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Instagram","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"xtreme","depth":9,"bounds":{"left":0.0,"top":0.112222224,"width":0.3236111,"height":0.08888889},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"xtreme","depth":10,"bounds":{"left":0.0,"top":0.17333333,"width":0.27847221,"height":0.026666667},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"bounds":{"left":0.0,"top":0.23333333,"width":0.027777778,"height":0.044444446},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Ако имате въпроси свържете се с нас!","depth":10,"bounds":{"left":0.0,"top":0.23111111,"width":0.2923611,"height":0.027777778},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ако имате въпроси свържете се с нас!","depth":11,"bounds":{"left":0.0,"top":0.23444444,"width":0.17986111,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"info@xtreme.bg","depth":11,"bounds":{"left":0.0,"top":0.28,"width":0.06944445,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"info@xtreme.bg","depth":12,"bounds":{"left":0.0,"top":0.28,"width":0.06944445,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"+359 886 177 222","depth":10,"bounds":{"left":0.0,"top":0.32222223,"width":0.10069445,"height":0.026666667},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"+359 886 177 222","depth":11,"bounds":{"left":0.0,"top":0.32222223,"width":0.10069445,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Информация","depth":9,"bounds":{"left":0.25416666,"top":0.112222224,"width":0.32291666,"height":0.02111111},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Информация","depth":10,"bounds":{"left":0.25416666,"top":0.10888889,"width":0.075,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Доставка","depth":11,"bounds":{"left":0.25416666,"top":0.15333334,"width":0.044444446,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Доставка","depth":12,"bounds":{"left":0.25416666,"top":0.15333334,"width":0.044444446,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Условия","depth":11,"bounds":{"left":0.25416666,"top":0.18111111,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Условия","depth":12,"bounds":{"left":0.25416666,"top":0.18111111,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Рекламация","depth":11,"bounds":{"left":0.25416666,"top":0.21,"width":0.056944445,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Рекламация","depth":12,"bounds":{"left":0.25416666,"top":0.21,"width":0.056944445,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Контакти","depth":11,"bounds":{"left":0.25416666,"top":0.23777778,"width":0.043055557,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Контакти","depth":12,"bounds":{"left":0.25416666,"top":0.23777778,"width":0.043055557,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"За Нас","depth":11,"bounds":{"left":0.25416666,"top":0.26666668,"width":0.030555556,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"За Нас","depth":12,"bounds":{"left":0.25416666,"top":0.26666668,"width":0.030555556,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Потребител","depth":9,"bounds":{"left":0.59791666,"top":0.112222224,"width":0.3236111,"height":0.02111111},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Потребител","depth":10,"bounds":{"left":0.59791666,"top":0.10888889,"width":0.06736111,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Профил","depth":11,"bounds":{"left":0.59791666,"top":0.15333334,"width":0.036805555,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Профил","depth":12,"bounds":{"left":0.59791666,"top":0.15333334,"width":0.036805555,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"История на Поръчките","depth":11,"bounds":{"left":0.59791666,"top":0.18111111,"width":0.104166664,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"История на Поръчките","depth":12,"bounds":{"left":0.59791666,"top":0.18111111,"width":0.104166664,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Любими","depth":11,"bounds":{"left":0.59791666,"top":0.21,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Любими","depth":12,"bounds":{"left":0.59791666,"top":0.21,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"GDPR","depth":11,"bounds":{"left":0.59791666,"top":0.23777778,"width":0.025,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"GDPR","depth":12,"bounds":{"left":0.59791666,"top":0.23777778,"width":0.025,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Лични Данни","depth":11,"bounds":{"left":0.59791666,"top":0.26666668,"width":0.061805554,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Лични Данни","depth":12,"bounds":{"left":0.59791666,"top":0.26666668,"width":0.061805554,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Методи за Плащане","depth":9,"bounds":{"left":0.9423611,"top":0.112222224,"width":0.057638884,"height":0.027777778},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Методи за Плащане","depth":10,"bounds":{"left":0.9423611,"top":0.112222224,"width":0.057638884,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Наложен Платеж","depth":11,"bounds":{"left":0.9423611,"top":0.16111112,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Кредитна/Дебитна Карта","depth":11,"bounds":{"left":0.9423611,"top":0.18888889,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Банков Превод","depth":11,"bounds":{"left":0.9423611,"top":0.24444444,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"На изплащане ПБ Лични Финанси","depth":11,"bounds":{"left":0.9423611,"top":0.27222222,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Copyright © 2023","depth":8,"bounds":{"left":0.39097223,"top":0.39,"width":0.08055556,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Xtreme.bg","depth":8,"bounds":{"left":0.47152779,"top":0.39,"width":0.046527777,"height":0.02111111},"help_text":"Xtreme Online Store","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Xtreme.bg","depth":9,"bounds":{"left":0.47152779,"top":0.39,"width":0.046527777,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"- Всички права запазени.","depth":8,"bounds":{"left":0.51805556,"top":0.39,"width":0.11875,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Онлайн магазин вървящ на","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"XCore","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"XCore","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
-6805869990902442825
|
-3340185160551454192
|
click
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Поръчка
Поръчка
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
479.52€ / 937.86 лв.
479.52€ / 937.86 лв.
Всички Категории
Всички Категории
Търси в Продуктите ...
Compares
0
Сравни
Wishlists
0
Любими
Поръчка
Поръчка
Начало
Начало
»
Поръчка
Поръчка
Поръчка
ПОРЪЧКА КАТО РЕГИСТРИРАН
|
УЛЕСНЕНА ПОРЪЧКА
Подробности за Доставката
Име и Фамилия
Lukáš Koválik
person
Телефон
Моля, сверете внимателно въведения номер !
phone
Изберете начин на Доставка
Получаване от нашия магазин.
Безплатна Доставка
0.00 €
Офис на Спиди.
Безплатна Доставка
0.00 €
До Адрес.
Безплатна Доставка
0.00 €
Населено Място
Изберте от падащото меню след като започнете да пишете (търсене)
Офис на Спиди
Изберте от падащото меню след като започнете да пишете (търсене)
Изберете начин на Плащане
Наложен Платеж при получаване в Брой или с Карта
Кредитна / Дебитна Карта - Плащане онлайн
Банков Превод
Купи на Кредит
Ако не искате да ви се обадим за потвърждение напишете
„
Без Обаждане
“
в полето Инструкции
Инструкции
Допълнителни Инструкции към поръчката
Опционално
Искам Фактура
Съгласен съм с
Общите условия
Общите условия
ЗАВЪРШИ ПОРЪЧКАТА
Обобщение на Поръчката
1 Артикул
Скрий Детайлите
expand_less
Твърд диск, Western Digital Red 6TB Plus ( 3.5
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 RPM, SATA 6Gb/s )
2
x
€239
76
/
468
93
лв
€479
52
/
937
86
лв
Сума
€479
52
/
937
86
лв
Доставка
0.00€
Общо
479.52€
Всички цени са с включено ДДС
СИГУРНОСТ
УСЛОВИЯ ЗА ДОСТАВКА
РЕКЛАМАЦИИ
Запишете се за нашият Бюлетин
Запишете се за нашият Бюлетин
Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.
[EMAIL]
Запиши се
Facebook
Twitter
Instagram
xtreme
xtreme
Ако имате въпроси свържете се с нас!
Ако имате въпроси свържете се с нас!
[EMAIL]
[EMAIL]
+359 886 177 222
+359 886 177 222
Информация
Информация
Доставка
Доставка
Условия
Условия
Рекламация
Рекламация
Контакти
Контакти
За Нас
За Нас
Потребител
Потребител
Профил
Профил
История на Поръчките
История на Поръчките
Любими
Любими
GDPR
GDPR
Лични Данни
Лични Данни
Методи за Плащане
Методи за Плащане
Наложен Платеж
Кредитна/Дебитна Карта
Банков Превод
На изплащане ПБ Лични Финанси
Copyright © 2023
Xtreme.bg
Xtreme.bg
- Всички права запазени.
Онлайн магазин вървящ на
XCore
XCore...
|
NULL
|
|
7615
|
142
|
27
|
2026-04-13T16:12:30.452675+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096750452_m1.jpg...
|
Firefox
|
Поръчка — Personal
|
True
|
xtreme.bg/shop/checkout.php
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Поръчка
Поръчка
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
479.52€ / 937.86 лв.
479.52€ / 937.86 лв.
Всички Категории
Всички Категории
Търси в Продуктите ...
Compares
0
Сравни
Wishlists
0
Любими
Поръчка
Поръчка
Начало
Начало
»
Поръчка
Поръчка
Поръчка
ПОРЪЧКА КАТО РЕГИСТРИРАН
|
УЛЕСНЕНА ПОРЪЧКА
Подробности за Доставката
Име и Фамилия
Lukáš Koválik
person
Телефон
Моля, сверете внимателно въведения номер !
phone
Изберете начин на Доставка
Получаване от нашия магазин.
Безплатна Доставка
0.00 €
Офис на Спиди.
Безплатна Доставка
0.00 €
До Адрес.
Безплатна Доставка
0.00 €
Населено Място
Изберте от падащото меню след като започнете да пишете (търсене)
Офис на Спиди
Изберте от падащото меню след като започнете да пишете (търсене)
Изберете начин на Плащане
Наложен Платеж при получаване в Брой или с Карта
Кредитна / Дебитна Карта - Плащане онлайн
Банков Превод
Купи на Кредит
Ако не искате да ви се обадим за потвърждение напишете
„
Без Обаждане
“
в полето Инструкции
Инструкции
Допълнителни Инструкции към поръчката
Опционално
Искам Фактура
Съгласен съм с
Общите условия
Общите условия
ЗАВЪРШИ ПОРЪЧКАТА
Обобщение на Поръчката
1 Артикул
Скрий Детайлите
expand_less
Твърд диск, Western Digital Red 6TB Plus ( 3.5
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 RPM, SATA 6Gb/s )
2
x
€239
76
/
468
93
лв
€479
52
/
937
86
лв
Сума
€479
52
/
937
86
лв
Доставка
0.00€
Общо
479.52€
Всички цени са с включено ДДС
СИГУРНОСТ
УСЛОВИЯ ЗА ДОСТАВКА
РЕКЛАМАЦИИ
Запишете се за нашият Бюлетин
Запишете се за нашият Бюлетин
Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.
[EMAIL]
Запиши се
Facebook
Twitter
Instagram
xtreme
xtreme
Ако имате въпроси свържете се с нас!
Ако имате въпроси свържете се с нас!
[EMAIL]
[EMAIL]
+359 886 177 222
+359 886 177 222
Информация
Информация
Доставка
Доставка
Условия
Условия
Рекламация
Рекламация
Контакти
Контакти
За Нас
За Нас
Потребител
Потребител
Профил
Профил
История на Поръчките
История на Поръчките
Любими
Любими
GDPR
GDPR
Лични Данни
Лични Данни
Методи за Плащане
Методи за Плащане
Наложен Платеж
Кредитна/Дебитна Карта
Банков Превод
На изплащане ПБ Лични Финанси
Copyright © 2023
Xtreme.bg
Xtreme.bg
- Всички права запазени.
Онлайн магазин вървящ на
XCore
XCore...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Inbox - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Shameless • HBO Max","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Shameless • HBO Max","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Machines - Tailscale","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Machines - Tailscale","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe Dashboard","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe Dashboard","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Поръчка","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Поръчка","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"google maps timeline export - Google Search","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"google maps timeline export - Google Search","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New Tab","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"0886 177 222","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0886 177 222","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"info@xtreme.bg","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"info@xtreme.bg","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"facebook","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"twitter","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"instagram","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"xtreme","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"НАЧАЛО","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"НАЧАЛО","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"МАГАЗИН","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"МАГАЗИН","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"БЛОГ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"БЛОГ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"КОНТАКТИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"КОНТАКТИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"РЕКЛАМАЦИИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"РЕКЛАМАЦИИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Lukáš Koválik","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":" 479.52€ / 937.86 лв.","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"479.52€ / 937.86 лв.","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Всички Категории","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Всички Категории","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Търси в Продуктите ...","depth":11,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Compares","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Сравни","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Wishlists","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Любими","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Поръчка","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Поръчка","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Начало","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Начало","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"»","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Поръчка","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Поръчка","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Поръчка","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ПОРЪЧКА КАТО РЕГИСТРИРАН","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"|","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"УЛЕСНЕНА ПОРЪЧКА","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Подробности за Доставката","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Име и Фамилия","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Lukáš Koválik","depth":12,"value":"Lukáš Koválik","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"person","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Телефон","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Моля, сверете внимателно въведения номер !","depth":12,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"phone","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Изберете начин на Доставка","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Получаване от нашия магазин.","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Безплатна Доставка","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.00 €","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Офис на Спиди.","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Безплатна Доставка","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.00 €","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"До Адрес.","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Безплатна Доставка","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.00 €","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Населено Място","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Изберте от падащото меню след като започнете да пишете (търсене)","depth":12,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Офис на Спиди","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Изберте от падащото меню след като започнете да пишете (търсене)","depth":12,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Изберете начин на Плащане","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Наложен Платеж при получаване в Брой или с Карта","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Кредитна / Дебитна Карта - Плащане онлайн","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Банков Превод","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Купи на Кредит","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ако не искате да ви се обадим за потвърждение напишете","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"„","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Без Обаждане","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"“","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"в полето Инструкции","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Инструкции","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextArea","text":"Допълнителни Инструкции към поръчката","depth":11,"help_text":"","role_description":"text entry area","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Опционално","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Искам Фактура","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Съгласен съм с","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Общите условия","depth":13,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Общите условия","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"ЗАВЪРШИ ПОРЪЧКАТА","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Обобщение на Поръчката","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1 Артикул","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Скрий Детайлите","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"expand_less","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Твърд диск, Western Digital Red 6TB Plus ( 3.5","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Твърд диск, Western Digital Red 6TB Plus ( 3.5\", 256MB, 5400 RPM, SATA 6Gb/s )","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"x","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€239","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"76","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"468","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"93","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€479","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"52","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"937","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"86","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Сума","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€479","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"52","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"937","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"86","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Доставка","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.00€","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Общо","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"479.52€","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Всички цени са с включено ДДС","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"СИГУРНОСТ","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"УСЛОВИЯ ЗА ДОСТАВКА","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"РЕКЛАМАЦИИ","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Запишете се за нашият Бюлетин","depth":7,"bounds":{"left":0.0,"top":0.011111111,"width":0.38541666,"height":0.02},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Запишете се за нашият Бюлетин","depth":8,"bounds":{"left":0.0,"top":0.006666667,"width":0.19930555,"height":0.028888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.","depth":8,"bounds":{"left":0.0,"top":0.032222223,"width":0.34097221,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"kovaliklukas@gmail.com","depth":8,"bounds":{"left":0.35069445,"top":0.015555556,"width":0.46805555,"height":0.053333335},"value":"kovaliklukas@gmail.com","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Запиши се","depth":8,"bounds":{"left":0.81875,"top":0.022222223,"width":0.09166667,"height":0.04},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Facebook","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Twitter","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Instagram","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"xtreme","depth":9,"bounds":{"left":0.0,"top":0.112222224,"width":0.3236111,"height":0.08888889},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"xtreme","depth":10,"bounds":{"left":0.0,"top":0.17333333,"width":0.27847221,"height":0.026666667},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"bounds":{"left":0.0,"top":0.23333333,"width":0.027777778,"height":0.044444446},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Ако имате въпроси свържете се с нас!","depth":10,"bounds":{"left":0.0,"top":0.23111111,"width":0.2923611,"height":0.027777778},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ако имате въпроси свържете се с нас!","depth":11,"bounds":{"left":0.0,"top":0.23444444,"width":0.17986111,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"info@xtreme.bg","depth":11,"bounds":{"left":0.0,"top":0.28,"width":0.06944445,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"info@xtreme.bg","depth":12,"bounds":{"left":0.0,"top":0.28,"width":0.06944445,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"+359 886 177 222","depth":10,"bounds":{"left":0.0,"top":0.32222223,"width":0.10069445,"height":0.026666667},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"+359 886 177 222","depth":11,"bounds":{"left":0.0,"top":0.32222223,"width":0.10069445,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Информация","depth":9,"bounds":{"left":0.25416666,"top":0.112222224,"width":0.32291666,"height":0.02111111},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Информация","depth":10,"bounds":{"left":0.25416666,"top":0.10888889,"width":0.075,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Доставка","depth":11,"bounds":{"left":0.25416666,"top":0.15333334,"width":0.044444446,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Доставка","depth":12,"bounds":{"left":0.25416666,"top":0.15333334,"width":0.044444446,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Условия","depth":11,"bounds":{"left":0.25416666,"top":0.18111111,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Условия","depth":12,"bounds":{"left":0.25416666,"top":0.18111111,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Рекламация","depth":11,"bounds":{"left":0.25416666,"top":0.21,"width":0.056944445,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Рекламация","depth":12,"bounds":{"left":0.25416666,"top":0.21,"width":0.056944445,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Контакти","depth":11,"bounds":{"left":0.25416666,"top":0.23777778,"width":0.043055557,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Контакти","depth":12,"bounds":{"left":0.25416666,"top":0.23777778,"width":0.043055557,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"За Нас","depth":11,"bounds":{"left":0.25416666,"top":0.26666668,"width":0.030555556,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"За Нас","depth":12,"bounds":{"left":0.25416666,"top":0.26666668,"width":0.030555556,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Потребител","depth":9,"bounds":{"left":0.59791666,"top":0.112222224,"width":0.3236111,"height":0.02111111},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Потребител","depth":10,"bounds":{"left":0.59791666,"top":0.10888889,"width":0.06736111,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Профил","depth":11,"bounds":{"left":0.59791666,"top":0.15333334,"width":0.036805555,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Профил","depth":12,"bounds":{"left":0.59791666,"top":0.15333334,"width":0.036805555,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"История на Поръчките","depth":11,"bounds":{"left":0.59791666,"top":0.18111111,"width":0.104166664,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"История на Поръчките","depth":12,"bounds":{"left":0.59791666,"top":0.18111111,"width":0.104166664,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Любими","depth":11,"bounds":{"left":0.59791666,"top":0.21,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Любими","depth":12,"bounds":{"left":0.59791666,"top":0.21,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"GDPR","depth":11,"bounds":{"left":0.59791666,"top":0.23777778,"width":0.025,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"GDPR","depth":12,"bounds":{"left":0.59791666,"top":0.23777778,"width":0.025,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Лични Данни","depth":11,"bounds":{"left":0.59791666,"top":0.26666668,"width":0.061805554,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Лични Данни","depth":12,"bounds":{"left":0.59791666,"top":0.26666668,"width":0.061805554,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Методи за Плащане","depth":9,"bounds":{"left":0.9423611,"top":0.112222224,"width":0.057638884,"height":0.027777778},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Методи за Плащане","depth":10,"bounds":{"left":0.9423611,"top":0.112222224,"width":0.057638884,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Наложен Платеж","depth":11,"bounds":{"left":0.9423611,"top":0.16111112,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Кредитна/Дебитна Карта","depth":11,"bounds":{"left":0.9423611,"top":0.18888889,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Банков Превод","depth":11,"bounds":{"left":0.9423611,"top":0.24444444,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"На изплащане ПБ Лични Финанси","depth":11,"bounds":{"left":0.9423611,"top":0.27222222,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Copyright © 2023","depth":8,"bounds":{"left":0.39097223,"top":0.39,"width":0.08055556,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Xtreme.bg","depth":8,"bounds":{"left":0.47152779,"top":0.39,"width":0.046527777,"height":0.02111111},"help_text":"Xtreme Online Store","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Xtreme.bg","depth":9,"bounds":{"left":0.47152779,"top":0.39,"width":0.046527777,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"- Всички права запазени.","depth":8,"bounds":{"left":0.51805556,"top":0.39,"width":0.11875,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Онлайн магазин вървящ на","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"XCore","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"XCore","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
-6805869990902442825
|
-3340185160551454192
|
idle
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Поръчка
Поръчка
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
479.52€ / 937.86 лв.
479.52€ / 937.86 лв.
Всички Категории
Всички Категории
Търси в Продуктите ...
Compares
0
Сравни
Wishlists
0
Любими
Поръчка
Поръчка
Начало
Начало
»
Поръчка
Поръчка
Поръчка
ПОРЪЧКА КАТО РЕГИСТРИРАН
|
УЛЕСНЕНА ПОРЪЧКА
Подробности за Доставката
Име и Фамилия
Lukáš Koválik
person
Телефон
Моля, сверете внимателно въведения номер !
phone
Изберете начин на Доставка
Получаване от нашия магазин.
Безплатна Доставка
0.00 €
Офис на Спиди.
Безплатна Доставка
0.00 €
До Адрес.
Безплатна Доставка
0.00 €
Населено Място
Изберте от падащото меню след като започнете да пишете (търсене)
Офис на Спиди
Изберте от падащото меню след като започнете да пишете (търсене)
Изберете начин на Плащане
Наложен Платеж при получаване в Брой или с Карта
Кредитна / Дебитна Карта - Плащане онлайн
Банков Превод
Купи на Кредит
Ако не искате да ви се обадим за потвърждение напишете
„
Без Обаждане
“
в полето Инструкции
Инструкции
Допълнителни Инструкции към поръчката
Опционално
Искам Фактура
Съгласен съм с
Общите условия
Общите условия
ЗАВЪРШИ ПОРЪЧКАТА
Обобщение на Поръчката
1 Артикул
Скрий Детайлите
expand_less
Твърд диск, Western Digital Red 6TB Plus ( 3.5
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 RPM, SATA 6Gb/s )
2
x
€239
76
/
468
93
лв
€479
52
/
937
86
лв
Сума
€479
52
/
937
86
лв
Доставка
0.00€
Общо
479.52€
Всички цени са с включено ДДС
СИГУРНОСТ
УСЛОВИЯ ЗА ДОСТАВКА
РЕКЛАМАЦИИ
Запишете се за нашият Бюлетин
Запишете се за нашият Бюлетин
Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.
[EMAIL]
Запиши се
Facebook
Twitter
Instagram
xtreme
xtreme
Ако имате въпроси свържете се с нас!
Ако имате въпроси свържете се с нас!
[EMAIL]
[EMAIL]
+359 886 177 222
+359 886 177 222
Информация
Информация
Доставка
Доставка
Условия
Условия
Рекламация
Рекламация
Контакти
Контакти
За Нас
За Нас
Потребител
Потребител
Профил
Профил
История на Поръчките
История на Поръчките
Любими
Любими
GDPR
GDPR
Лични Данни
Лични Данни
Методи за Плащане
Методи за Плащане
Наложен Платеж
Кредитна/Дебитна Карта
Банков Превод
На изплащане ПБ Лични Финанси
Copyright © 2023
Xtreme.bg
Xtreme.bg
- Всички права запазени.
Онлайн магазин вървящ на
XCore
XCore...
|
7614
|
|
7616
|
NULL
|
0
|
2026-04-13T16:12:34.096153+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096754096_m1.jpg...
|
Code
|
Getting started with Cla… — screenpipe [SSH: 100.7 Getting started with Cla… — screenpipe [SSH: 100.73.206.126]...
|
True
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧ Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧G)
Run and Debug (⇧⌘D)
Remote Explorer
Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update
2
Claude Code
Containers
EXPLORER
EXPLORER
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
SCREENPIPE [SSH: [IP_ADDRESS]]
#recycle
app
__pycache__
consumers
static
.env
cli.py
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
data
pipes
db.sqlite
Outline Section
OUTLINE
OUTLINE
Timeline Section
TIMELINE
TIMELINE
pipe.md, Editor Group 1
Untitled-2, Editor Group 1
docker-compose.yml, preview, Editor Group 1
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
Getting started with Cla…, Editor Group 2
Problems (⇧⌘M)
PROBLEMS
Output (⇧⌘U)
OUTPUT
Debug Console (⇧⌘Y)
DEBUG CONSOLE
Terminal (⌃`)
TERMINAL
Ports
PORTS
remote SSH: [IP_ADDRESS]
SSH: [IP_ADDRESS]
No Problems
0
0
No Ports Forwarded
0
Notifications
Sign In
Sign In
Screen Reader Optimized
Info: Setting up SSH Host [IP_ADDRESS]: Setting up SSH tunnel
Command Succeeded
Getting started with Claude agent SDK
Session history
New session
Message actions
how to start it
Thinking
Thinking
Let me check what's in your working directory to understand what you're referring to.
Bash
IN
ls /volume1/screenpipe
Copy code to clipboard
OUT
app
data
db.sqlite
pipes
#recycle
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes
Copy code to clipboard
OUT
cli.py
consumers
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
static
ai-habits
day-recap
meeting-summary
standup-update
time-breakdown
video-export
[rerun: b2]
Read
docker-compose.yml
docker-compose.yml
This is a Screenpipe app with a Docker Compose setup. To start it:
Copy code to clipboard
cd /volume1/screenpipe/app
docker compose up -d
This builds the image (first run) and starts the container in the background
The app will be accessible at
[URL_WITH_CREDENTIALS]
sudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d
Once running, the dashboard will be at
http://your-nas-ip:8766
http://your-nas-ip:8766
and it will query the data you already copied — the database has 6,923 frames and 5,464 OCR records ready to go.
Message actions
docker-compose.yml
docker-compose.yml
I have ugos ugreen nas. I can see the ui but it is empty. No data. Also when I open it there is defsault today, lets make default yesterday.
Thinking
Thinking
Let me check why data isn't showing and look at the frontend.
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT DATE(timestamp) as d, COUNT(*) FROM frames GROUP BY d ORDER BY d DESC LIMIT 10;"
Copy code to clipboard
OUT
2026-04-13|2643
2026-04-12|2455
2026-04-11|1302
2026-04-09|523
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app/static/
Copy code to clipboard
OUT
index.html
[rerun: b2]
Bash
IN
wc -l /volume1/screenpipe/app/static/index.html
Copy code to clipboard
OUT
1048 /volume1/screenpipe/app/static/index.html
[rerun: b3]
Bash
IN
grep -n "today\|new Date\|date\|default" /volume1/screenpipe/app/static/index.html | head -40
Copy code to clipboard
OUT
24:input[type="date"] {
71:.sess-segment:hover { opacity: 0.8; cursor: default; }
179:button:disabled { opacity: 0.4; cursor: default; }
276: <input type="date" id="datePicker" onchange="refresh()">
336: <select id="sSrc" onchange="updateSourceHint()">
356: <input type="date" id="sDate">
388: <div id="workReportOut"><div class="empty">Click Generate Report to build a structured work summary for the selected date.</div></div>
398: <option value="standup">Standup Update</option>
453:const dp = document.getElementById('datePicker');
454:dp.value = new Date().toISOString().slice(0,10);
525: // Re-render bars to update selection highlight
679: const bucket = Math.floor(new Date(r.timestamp).getTime() / (everyMin * 60000));
710:function updateSourceHint() {
721: updateSourceHint();
797: if (!rows.length) { el.innerHTML = '<div class="empty">No audio for this date.</div>'; return; }
835: try { return new Date(ts).toLocaleTimeString([],{hour:'2-digit',minute:'2-digit'}); }
885: const spanMs = new Date(s.day_end) - new Date(s.day_start);
891: const left = (new Date(seg.start) - new Date(s.day_start)) / spanMs * 100;
892: const width = (new Date(seg.end) - new Date(seg.start)) / spanMs * 100;
899: const left = (new Date(brk.start) - new Date(s.day_start)) / spanMs * 100;
900: const width = (new Date(brk.end) - new Date(brk.start)) / spanMs * 100;
[rerun: b4]
Thinking
Thinking
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT timestamp FROM frames ORDER BY timestamp DESC LIMIT 3; SELECT timestamp FROM frames ORDER BY timestamp ASC LIMIT 3;"
Copy code to clipboard
OUT
2026-04-13T14:19:10.998594+00:00
2026-04-13T14:19:08.686883+00:00
2026-04-13T14:19:06.581255+00:00
2026-04-09T16:53:09.043761+00:00
2026-04-09T16:53:19.073971+00:00
2026-04-09T16:53:20.618409+00:00
[rerun: b5]
Read
index.html
index.html
(lines 451-480)
Thinking
Thinking
Bash
IN
curl -s "http://localhost:8766/api/stats?d=2026-04-13" 2>&1 | head -50
Copy code to clipboard
OUT
{"date":"2026-04-13","total_frames":0,"first_seen":null,"last_seen":null,"unique_apps":0,"audio_segments":0,"ui_events":0}
[rerun: b6]
Thinking
Thinking
Bash
IN
ls /volume1/screenpipe/app/consumers/
Copy code to clipboard
OUT
activity.py
audio.py
elements.py
__init__.py
interactions.py
ocr.py
report.py
summary.py
[rerun: b7]
Read
activity.py
activity.py
Thinking
Thinking
Bash
IN
curl -s "http://localhost:8766/api/activity/apps?d=2026-04-13" 2>&1 | head -20
Copy code to clipboard
OUT
[]
[rerun: b8]
Bash
IN
python3 -c "
from datetime import date, datetime, timedelta, timezone
d = date(2026, 4, 13)
start = datetime(d.year, d.month, d.day, tzinfo=timezone.utc)
end = start + timedelta(days=1)
print('start:', repr(start.isoformat()))
print('end:', repr(end.isoformat()))
"
Copy code to clipboard
OUT
start: '2026-04-13T00:00:00+00:00'
end: '2026-04-14T00:00:00+00:00'
[rerun: b9]
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT COUNT(*) FROM frames WHERE timestamp >= '2026-04-13T00:00:00+00:00' AND timestamp < '2026-04-14T00:00:00+00:00';"
Copy code to clipboard
OUT
2643
[rerun: b10]
Thinking
Thinking
Read
Dockerfile
Dockerfile
Thinking
Thinking
The DB query on the host works fine (2643 frames), but the API inside the container returns 0. The volume mount likely isn't working. Let me test by running the app directly on the host:
Bash
IN
cd /volume1/screenpipe/app && python3 -c "
import sys
sys.path.insert(0, '.')
import os
os.environ['DB_PATH'] = '/volume1/screenpipe/db.sqlite'
# patch db module
import db
db.DB_PATH = '/volume1/screenpipe/db.sqlite'
from consumers.activity import app_time
from datetime import date
result = app_time(date(2026, 4, 13))
print('Result count:', len(result))
print('First:', result[0] if result else 'EMPTY')
" 2>&1
Copy code to clipboard
OUT
Result count: 12
First: {'app_name': 'Boosteroid', 'frame_count': 2292, 'minutes': 76.4}
[rerun: b11]
Thinking
Thinking...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"Explorer (⇧⌘E)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":true},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Search (⇧⌘F)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Source Control (⌃⇧G)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Run and Debug (⇧⌘D)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Remote Explorer","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"2","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Claude Code","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Containers","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"EXPLORER","depth":17,"role_description":"heading"},{"role":"AXStaticText","text":"EXPLORER","depth":18,"role_description":"text"},{"role":"AXButton","text":"Explorer Section: screenpipe [SSH: 100.73.206.126]","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"Explorer Section: screenpipe [SSH: 100.73.206.126]","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"SCREENPIPE [SSH: 100.73.206.126]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"#recycle","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"app","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"__pycache__","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"consumers","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"static","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"cli.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"docker-compose.yml","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"Dockerfile","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"main.py","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"requirements.txt","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"data","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"pipes","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite","depth":27,"role_description":"text"},{"role":"AXButton","text":"Outline Section","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"OUTLINE","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"OUTLINE","depth":23,"role_description":"text"},{"role":"AXButton","text":"Timeline Section","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"TIMELINE","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"TIMELINE","depth":23,"role_description":"text"},{"role":"AXRadioButton","text":"pipe.md, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Untitled-2, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"docker-compose.yml, preview, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXStaticText","text":"","depth":29,"role_description":"text"},{"role":"AXTextArea","text":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","depth":28,"value":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","role_description":"editor","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"services:\n screenpipe-app:\n build: .\n container_name: screenpipe-app\n restart: unless-stopped\n ports:\n - \"8766:8000\"\n volumes:\n - /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro\n - /volume1/screenpipe/data:/data/data:ro\n env_file:\n - .env\n environment:\n TZ: Europe/Sofia","depth":29,"role_description":"text"},{"role":"AXRadioButton","text":"Getting started with Cla…, Editor Group 2","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXRadioButton","text":"Problems (⇧⌘M)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"PROBLEMS","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Output (⇧⌘U)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUTPUT","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Debug Console (⇧⌘Y)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"DEBUG CONSOLE","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Terminal (⌃`)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":true},{"role":"AXStaticText","text":"TERMINAL","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Ports","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"PORTS","depth":24,"role_description":"text"},{"role":"AXButton","text":"remote SSH: 100.73.206.126","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"SSH: 100.73.206.126","depth":17,"role_description":"text"},{"role":"AXButton","text":"No Problems","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXButton","text":"No Ports Forwarded","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXButton","text":"Notifications","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sign In","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"Sign In","depth":17,"role_description":"text"},{"role":"AXButton","text":"Screen Reader Optimized","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Info: Setting up SSH Host 100.73.206.126: Setting up SSH tunnel","depth":12,"role_description":"text"},{"role":"AXStaticText","text":"Command Succeeded","depth":12,"role_description":"text"},{"role":"AXButton","text":"Getting started with Claude agent SDK","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Session history","depth":18,"help_text":"Session history","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New session","depth":18,"help_text":"New session","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"how to start it","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Let me check what's in your working directory to understand what you're referring to.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"app\ndata\ndb.sqlite\npipes\n#recycle\n[rerun: b1]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"cli.py\nconsumers\ndb.py\ndocker-compose.yml\nDockerfile\nmain.py\nrequirements.txt\nstatic\nai-habits\nday-recap\nmeeting-summary\nstandup-update\ntime-breakdown\nvideo-export\n[rerun: b2]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"docker-compose.yml","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker-compose.yml","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"This is a Screenpipe app with a Docker Compose setup. To start it:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app\ndocker compose up -d","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"This builds the image (first run) and starts the container in the background","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"The app will be accessible at","depth":23,"role_description":"text"},{"role":"AXLink","text":"http://your-server-ip:8766","depth":24,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"http://your-server-ip:8766","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"To check if it's running:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker compose ps","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"To view logs:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker compose logs -f","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Make sure an","depth":22,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"file exists in","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"before starting — the compose file references one (","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"env_file: .env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"). If it's missing, the container will fail to start.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app/.env 2>/dev/null && echo \"exists\" || echo \"MISSING\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/.env\nexists\n[rerun: b3]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"The","depth":22,"role_description":"text"},{"role":"AXStaticText","text":".env","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"file exists, so you're good to go. Just run:","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app && docker compose up -d","depth":24,"role_description":"text"},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"docker-compose.yml","depth":22,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker-compose.yml","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"I opened it but there are no data after I coppied it there. the idea behind this app is to have the data pasted form screenpipe mac app and only query it and work with it","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Let me check the current state of the data.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls -lh /volume1/screenpipe/db.sqlite && ls /volume1/screenpipe/data/ | head -20","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"-rwxrwxrwx 1 Adm1n admin 423M Apr 13 17:20 /volume1/screenpipe/db.sqlite\n2026-04-09\n2026-04-11\n2026-04-12\n[rerun: b1]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \".tables\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"_sqlx_migrations meetings \naudio_chunks memories \naudio_tags memories_fts \naudio_transcriptions memories_fts_config \naudio_transcriptions_fts memories_fts_data \naudio_transcriptions_fts_config memories_fts_docsize \naudio_transcriptions_fts_data memories_fts_idx \naudio_transcriptions_fts_docsize ocr_text \naudio_transcriptions_fts_idx pipe_executions \nelements pipe_scheduler_state \nelements_fts speaker_embeddings \nelements_fts_config speakers \nelements_fts_data tags \nelements_fts_docsize ui_events \nelements_fts_idx ui_events_fts \nframes ui_events_fts_config \nframes_fts ui_events_fts_data \nframes_fts_config ui_events_fts_docsize \nframes_fts_content ui_events_fts_idx \nframes_fts_data video_chunks \nframes_fts_docsize vision_tags \nframes_fts_idx\n[rerun: b2]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \"SELECT COUNT(*) FROM frames; SELECT COUNT(*) FROM ocr_text; SELECT COUNT(*) FROM audio_transcriptions;\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"6923\n5464\n3\n[rerun: b3]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"The data is there — 423MB database with 6,923 frames and 5,464 OCR records. The app just isn't running yet. Let me check what the app actually does and whether it can query this data properly.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"main.py","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"main.py","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"db.py","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"db.py","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"The data is actually there — the database has 423MB of data. The app just needs to be started. Let me start it:","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app && docker compose up -d 2>&1","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Exit code 1\npermission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Get \"http://%2Fvar%2Frun%2Fdocker.sock/v1.45/containers/json?all=1&filters=%7B%22label%22%3A%7B%22com.docker.compose.config-hash%22%3Atrue%2C%22com.docker.compose.project%3Dapp%22%3Atrue%7D%7D\": dial unix /var/run/docker.sock: connect: permission denied\n[rerun: b4]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d 2>&1","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Exit code 1\nsudo: a terminal is required to read the password; either use the -S option to read from standard input or configure an askpass helper\nsudo: a password is required\n[rerun: b5]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"groups && id","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"admin users ughomeusers Media Social\nuid=1000(Adm1n) gid=10(admin) groups=10(admin),100(users),133(ughomeusers),1001(Media),1002(Social)\n[rerun: b6]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"You need to run Docker with elevated privileges. You're not in the","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"docker","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"group. There are two options:","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Option 1 — Run via Synology's Container Manager (DSM GUI)","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Open DSM → Container Manager → Project → Create project → point it to","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"/volume1/screenpipe/app/docker-compose.yml","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Option 2 — Add yourself to the docker group (requires admin/root once)","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Open an SSH terminal as root (or via DSM terminal with admin):","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"sudo synogroup --add docker Adm1n\n# then log out and back in, then:\ncd /volume1/screenpipe/app && docker compose up -d","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Option 3 — Run it directly from an SSH session with sudo","depth":23,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":22,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"ssh admin@your-nas-ip\nsudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Once running, the dashboard will be at","depth":22,"role_description":"text"},{"role":"AXLink","text":"http://your-nas-ip:8766","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"http://your-nas-ip:8766","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"and it will query the data you already copied — the database has 6,923 frames and 5,464 OCR records ready to go.","depth":22,"role_description":"text"},{"role":"AXButton","text":"Message actions","depth":23,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"docker-compose.yml","depth":22,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"docker-compose.yml","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"I have ugos ugreen nas. I can see the ui but it is empty. No data. Also when I open it there is defsault today, lets make default yesterday.","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Let me check why data isn't showing and look at the frontend.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \"SELECT DATE(timestamp) as d, COUNT(*) FROM frames GROUP BY d ORDER BY d DESC LIMIT 10;\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"2026-04-13|2643\n2026-04-12|2455\n2026-04-11|1302\n2026-04-09|523\n[rerun: b1]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app/static/","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"index.html\n[rerun: b2]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"wc -l /volume1/screenpipe/app/static/index.html","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"1048 /volume1/screenpipe/app/static/index.html\n[rerun: b3]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"grep -n \"today\\|new Date\\|date\\|default\" /volume1/screenpipe/app/static/index.html | head -40","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"24:input[type=\"date\"] {\n71:.sess-segment:hover { opacity: 0.8; cursor: default; }\n179:button:disabled { opacity: 0.4; cursor: default; }\n276: <input type=\"date\" id=\"datePicker\" onchange=\"refresh()\">\n336: <select id=\"sSrc\" onchange=\"updateSourceHint()\">\n356: <input type=\"date\" id=\"sDate\">\n388: <div id=\"workReportOut\"><div class=\"empty\">Click Generate Report to build a structured work summary for the selected date.</div></div>\n398: <option value=\"standup\">Standup Update</option>\n453:const dp = document.getElementById('datePicker');\n454:dp.value = new Date().toISOString().slice(0,10);\n525: // Re-render bars to update selection highlight\n679: const bucket = Math.floor(new Date(r.timestamp).getTime() / (everyMin * 60000));\n710:function updateSourceHint() {\n721: updateSourceHint();\n797: if (!rows.length) { el.innerHTML = '<div class=\"empty\">No audio for this date.</div>'; return; }\n835: try { return new Date(ts).toLocaleTimeString([],{hour:'2-digit',minute:'2-digit'}); }\n885: const spanMs = new Date(s.day_end) - new Date(s.day_start);\n891: const left = (new Date(seg.start) - new Date(s.day_start)) / spanMs * 100;\n892: const width = (new Date(seg.end) - new Date(seg.start)) / spanMs * 100;\n899: const left = (new Date(brk.start) - new Date(s.day_start)) / spanMs * 100;\n900: const width = (new Date(brk.end) - new Date(brk.start)) / spanMs * 100;\n[rerun: b4]","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \"SELECT timestamp FROM frames ORDER BY timestamp DESC LIMIT 3; SELECT timestamp FROM frames ORDER BY timestamp ASC LIMIT 3;\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"2026-04-13T14:19:10.998594+00:00\n2026-04-13T14:19:08.686883+00:00\n2026-04-13T14:19:06.581255+00:00\n2026-04-09T16:53:09.043761+00:00\n2026-04-09T16:53:19.073971+00:00\n2026-04-09T16:53:20.618409+00:00\n[rerun: b5]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"index.html","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"index.html","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"(lines 451-480)","depth":23,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"curl -s \"http://localhost:8766/api/stats?d=2026-04-13\" 2>&1 | head -50","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"{\"date\":\"2026-04-13\",\"total_frames\":0,\"first_seen\":null,\"last_seen\":null,\"unique_apps\":0,\"audio_segments\":0,\"ui_events\":0}\n[rerun: b6]","depth":23,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"ls /volume1/screenpipe/app/consumers/","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"activity.py\naudio.py\nelements.py\n__init__.py\ninteractions.py\nocr.py\nreport.py\nsummary.py\n[rerun: b7]","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"activity.py","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"activity.py","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"curl -s \"http://localhost:8766/api/activity/apps?d=2026-04-13\" 2>&1 | head -20","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"[]\n[rerun: b8]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"python3 -c \"\nfrom datetime import date, datetime, timedelta, timezone\nd = date(2026, 4, 13)\nstart = datetime(d.year, d.month, d.day, tzinfo=timezone.utc)\nend = start + timedelta(days=1)\nprint('start:', repr(start.isoformat()))\nprint('end:', repr(end.isoformat()))\n\"","depth":25,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"start: '2026-04-13T00:00:00+00:00'\nend: '2026-04-14T00:00:00+00:00'\n[rerun: b9]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"sqlite3 /volume1/screenpipe/db.sqlite \"SELECT COUNT(*) FROM frames WHERE timestamp >= '2026-04-13T00:00:00+00:00' AND timestamp < '2026-04-14T00:00:00+00:00';\"","depth":24,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"2643\n[rerun: b10]","depth":23,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":23,"role_description":"text"},{"role":"AXLink","text":"Dockerfile","depth":23,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Dockerfile","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"The DB query on the host works fine (2643 frames), but the API inside the container returns 0. The volume mount likely isn't working. Let me test by running the app directly on the host:","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"cd /volume1/screenpipe/app && python3 -c \"\nimport sys\nsys.path.insert(0, '.')\nimport os\nos.environ['DB_PATH'] = '/volume1/screenpipe/db.sqlite'\n\n# patch db module\nimport db\ndb.DB_PATH = '/volume1/screenpipe/db.sqlite'\n\nfrom consumers.activity import app_time\nfrom datetime import date\nresult = app_time(date(2026, 4, 13))\nprint('Result count:', len(result))\nprint('First:', result[0] if result else 'EMPTY')\n\" 2>&1","depth":25,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":23,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Result count: 12\nFirst: {'app_name': 'Boosteroid', 'frame_count': 2292, 'minutes': 76.4}\n[rerun: b11]","depth":23,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":22,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":23,"role_description":"text"}]...
|
7451048873989626765
|
-8844874715071080829
|
click
|
accessibility
|
NULL
|
Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧ Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧G)
Run and Debug (⇧⌘D)
Remote Explorer
Extensions (⇧⌘X) - 2 require update Extensions (⇧⌘X) - 2 require update
2
Claude Code
Containers
EXPLORER
EXPLORER
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
Explorer Section: screenpipe [SSH: [IP_ADDRESS]]
SCREENPIPE [SSH: [IP_ADDRESS]]
#recycle
app
__pycache__
consumers
static
.env
cli.py
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
data
pipes
db.sqlite
Outline Section
OUTLINE
OUTLINE
Timeline Section
TIMELINE
TIMELINE
pipe.md, Editor Group 1
Untitled-2, Editor Group 1
docker-compose.yml, preview, Editor Group 1
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
services:
screenpipe-app:
build: .
container_name: screenpipe-app
restart: unless-stopped
ports:
- "8766:8000"
volumes:
- /volume1/screenpipe/db.sqlite:/data/db.sqlite:ro
- /volume1/screenpipe/data:/data/data:ro
env_file:
- .env
environment:
TZ: Europe/Sofia
Getting started with Cla…, Editor Group 2
Problems (⇧⌘M)
PROBLEMS
Output (⇧⌘U)
OUTPUT
Debug Console (⇧⌘Y)
DEBUG CONSOLE
Terminal (⌃`)
TERMINAL
Ports
PORTS
remote SSH: [IP_ADDRESS]
SSH: [IP_ADDRESS]
No Problems
0
0
No Ports Forwarded
0
Notifications
Sign In
Sign In
Screen Reader Optimized
Info: Setting up SSH Host [IP_ADDRESS]: Setting up SSH tunnel
Command Succeeded
Getting started with Claude agent SDK
Session history
New session
Message actions
how to start it
Thinking
Thinking
Let me check what's in your working directory to understand what you're referring to.
Bash
IN
ls /volume1/screenpipe
Copy code to clipboard
OUT
app
data
db.sqlite
pipes
#recycle
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app && ls /volume1/screenpipe/pipes
Copy code to clipboard
OUT
cli.py
consumers
db.py
docker-compose.yml
Dockerfile
main.py
requirements.txt
static
ai-habits
day-recap
meeting-summary
standup-update
time-breakdown
video-export
[rerun: b2]
Read
docker-compose.yml
docker-compose.yml
This is a Screenpipe app with a Docker Compose setup. To start it:
Copy code to clipboard
cd /volume1/screenpipe/app
docker compose up -d
This builds the image (first run) and starts the container in the background
The app will be accessible at
[URL_WITH_CREDENTIALS]
sudo docker compose -f /volume1/screenpipe/app/docker-compose.yml up -d
Once running, the dashboard will be at
http://your-nas-ip:8766
http://your-nas-ip:8766
and it will query the data you already copied — the database has 6,923 frames and 5,464 OCR records ready to go.
Message actions
docker-compose.yml
docker-compose.yml
I have ugos ugreen nas. I can see the ui but it is empty. No data. Also when I open it there is defsault today, lets make default yesterday.
Thinking
Thinking
Let me check why data isn't showing and look at the frontend.
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT DATE(timestamp) as d, COUNT(*) FROM frames GROUP BY d ORDER BY d DESC LIMIT 10;"
Copy code to clipboard
OUT
2026-04-13|2643
2026-04-12|2455
2026-04-11|1302
2026-04-09|523
[rerun: b1]
Bash
IN
ls /volume1/screenpipe/app/static/
Copy code to clipboard
OUT
index.html
[rerun: b2]
Bash
IN
wc -l /volume1/screenpipe/app/static/index.html
Copy code to clipboard
OUT
1048 /volume1/screenpipe/app/static/index.html
[rerun: b3]
Bash
IN
grep -n "today\|new Date\|date\|default" /volume1/screenpipe/app/static/index.html | head -40
Copy code to clipboard
OUT
24:input[type="date"] {
71:.sess-segment:hover { opacity: 0.8; cursor: default; }
179:button:disabled { opacity: 0.4; cursor: default; }
276: <input type="date" id="datePicker" onchange="refresh()">
336: <select id="sSrc" onchange="updateSourceHint()">
356: <input type="date" id="sDate">
388: <div id="workReportOut"><div class="empty">Click Generate Report to build a structured work summary for the selected date.</div></div>
398: <option value="standup">Standup Update</option>
453:const dp = document.getElementById('datePicker');
454:dp.value = new Date().toISOString().slice(0,10);
525: // Re-render bars to update selection highlight
679: const bucket = Math.floor(new Date(r.timestamp).getTime() / (everyMin * 60000));
710:function updateSourceHint() {
721: updateSourceHint();
797: if (!rows.length) { el.innerHTML = '<div class="empty">No audio for this date.</div>'; return; }
835: try { return new Date(ts).toLocaleTimeString([],{hour:'2-digit',minute:'2-digit'}); }
885: const spanMs = new Date(s.day_end) - new Date(s.day_start);
891: const left = (new Date(seg.start) - new Date(s.day_start)) / spanMs * 100;
892: const width = (new Date(seg.end) - new Date(seg.start)) / spanMs * 100;
899: const left = (new Date(brk.start) - new Date(s.day_start)) / spanMs * 100;
900: const width = (new Date(brk.end) - new Date(brk.start)) / spanMs * 100;
[rerun: b4]
Thinking
Thinking
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT timestamp FROM frames ORDER BY timestamp DESC LIMIT 3; SELECT timestamp FROM frames ORDER BY timestamp ASC LIMIT 3;"
Copy code to clipboard
OUT
2026-04-13T14:19:10.998594+00:00
2026-04-13T14:19:08.686883+00:00
2026-04-13T14:19:06.581255+00:00
2026-04-09T16:53:09.043761+00:00
2026-04-09T16:53:19.073971+00:00
2026-04-09T16:53:20.618409+00:00
[rerun: b5]
Read
index.html
index.html
(lines 451-480)
Thinking
Thinking
Bash
IN
curl -s "http://localhost:8766/api/stats?d=2026-04-13" 2>&1 | head -50
Copy code to clipboard
OUT
{"date":"2026-04-13","total_frames":0,"first_seen":null,"last_seen":null,"unique_apps":0,"audio_segments":0,"ui_events":0}
[rerun: b6]
Thinking
Thinking
Bash
IN
ls /volume1/screenpipe/app/consumers/
Copy code to clipboard
OUT
activity.py
audio.py
elements.py
__init__.py
interactions.py
ocr.py
report.py
summary.py
[rerun: b7]
Read
activity.py
activity.py
Thinking
Thinking
Bash
IN
curl -s "http://localhost:8766/api/activity/apps?d=2026-04-13" 2>&1 | head -20
Copy code to clipboard
OUT
[]
[rerun: b8]
Bash
IN
python3 -c "
from datetime import date, datetime, timedelta, timezone
d = date(2026, 4, 13)
start = datetime(d.year, d.month, d.day, tzinfo=timezone.utc)
end = start + timedelta(days=1)
print('start:', repr(start.isoformat()))
print('end:', repr(end.isoformat()))
"
Copy code to clipboard
OUT
start: '2026-04-13T00:00:00+00:00'
end: '2026-04-14T00:00:00+00:00'
[rerun: b9]
Bash
IN
sqlite3 /volume1/screenpipe/db.sqlite "SELECT COUNT(*) FROM frames WHERE timestamp >= '2026-04-13T00:00:00+00:00' AND timestamp < '2026-04-14T00:00:00+00:00';"
Copy code to clipboard
OUT
2643
[rerun: b10]
Thinking
Thinking
Read
Dockerfile
Dockerfile
Thinking
Thinking
The DB query on the host works fine (2643 frames), but the API inside the container returns 0. The volume mount likely isn't working. Let me test by running the app directly on the host:
Bash
IN
cd /volume1/screenpipe/app && python3 -c "
import sys
sys.path.insert(0, '.')
import os
os.environ['DB_PATH'] = '/volume1/screenpipe/db.sqlite'
# patch db module
import db
db.DB_PATH = '/volume1/screenpipe/db.sqlite'
from consumers.activity import app_time
from datetime import date
result = app_time(date(2026, 4, 13))
print('Result count:', len(result))
print('First:', result[0] if result else 'EMPTY')
" 2>&1
Copy code to clipboard
OUT
Result count: 12
First: {'app_name': 'Boosteroid', 'frame_count': 2292, 'minutes': 76.4}
[rerun: b11]
Thinking
Thinking...
|
7614
|
|
7617
|
143
|
0
|
2026-04-13T16:12:49.522059+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-13/1776 /Users/lukas/.screenpipe/data/data/2026-04-13/1776096769522_m1.jpg...
|
Firefox
|
Поръчка — Personal
|
True
|
xtreme.bg/shop/checkout.php
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Поръчка
Поръчка
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
479.52€ / 937.86 лв.
479.52€ / 937.86 лв.
Всички Категории
Всички Категории
Търси в Продуктите ...
Compares
0
Сравни
Wishlists
0
Любими
Поръчка
Поръчка
Начало
Начало
»
Поръчка
Поръчка
Поръчка
ПОРЪЧКА КАТО РЕГИСТРИРАН
|
УЛЕСНЕНА ПОРЪЧКА
Подробности за Доставката
Име и Фамилия
Lukáš Koválik
person
Телефон
Моля, сверете внимателно въведения номер !
phone
Изберете начин на Доставка
Получаване от нашия магазин.
Безплатна Доставка
0.00 €
Офис на Спиди.
Безплатна Доставка
0.00 €
До Адрес.
Безплатна Доставка
0.00 €
Адрес за Доставка
Нов Адрес: Лукаш Ковлик - [PHONE], София , Богомил Райнов 4 Нов Адрес: Лукаш Ковлик - [PHONE], София , Богомил Райнов 4 Нов Адрес: Лукаш Ковлик - [PHONE], София , Богомил Райнов 4
Нов Адрес: Лукаш Ковлик - [PHONE], София , Богомил Райнов 4
Изберете начин на Плащане
Наложен Платеж при получаване в Брой или с Карта
Кредитна / Дебитна Карта - Плащане онлайн
Банков Превод
Купи на Кредит
Ако не искате да ви се обадим за потвърждение напишете
„
Без Обаждане
“
в полето Инструкции
Инструкции
Допълнителни Инструкции към поръчката
Опционално
Искам Фактура
Съгласен съм с
Общите условия
Общите условия
ЗАВЪРШИ ПОРЪЧКАТА
Обобщение на Поръчката
1 Артикул
Скрий Детайлите
expand_less
Твърд диск, Western Digital Red 6TB Plus ( 3.5
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 RPM, SATA 6Gb/s )
2
x
€239
76
/
468
93
лв
€479
52
/
937
86
лв
Сума
€479
52
/
937
86
лв
Доставка
0.00€
Общо
479.52€
Всички цени са с включено ДДС
СИГУРНОСТ
УСЛОВИЯ ЗА ДОСТАВКА
РЕКЛАМАЦИИ
Запишете се за нашият Бюлетин
Запишете се за нашият Бюлетин
Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.
[EMAIL]
Запиши се
Facebook
Twitter
Instagram
xtreme
xtreme
Ако имате въпроси свържете се с нас!
Ако имате въпроси свържете се с нас!
[EMAIL]
[EMAIL]
+359 886 177 222
+359 886 177 222
Информация
Информация
Доставка
Доставка
Условия
Условия
Рекламация
Рекламация
Контакти
Контакти
За Нас
За Нас
Потребител
Потребител
Профил
Профил
История на Поръчките
История на Поръчките
Любими
Любими
GDPR
GDPR
Лични Данни
Лични Данни
Методи за Плащане
Методи за Плащане
Наложен Платеж
Кредитна/Дебитна Карта
Банков Превод
На изплащане ПБ Лични Финанси
Copyright © 2023
Xtreme.bg
Xtreme.bg
- Всички права запазени.
Онлайн магазин вървящ на
XCore
XCore...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"DXP4800PLUS-B5F8","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Inbox - kovaliklukas@gmail.com - Gmail","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Shameless • HBO Max","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Shameless • HBO Max","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Machines - Tailscale","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Machines - Tailscale","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Screenpipe Dashboard","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe Dashboard","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Поръчка","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Поръчка","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"google maps timeline export - Google Search","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"google maps timeline export - Google Search","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"New Tab","depth":4,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"New Tab","depth":5,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bitwarden","depth":6,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"0886 177 222","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0886 177 222","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"info@xtreme.bg","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"info@xtreme.bg","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"facebook","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"twitter","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"","depth":8,"help_text":"instagram","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"xtreme","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"НАЧАЛО","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"НАЧАЛО","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"МАГАЗИН","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"МАГАЗИН","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"БЛОГ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"БЛОГ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"КОНТАКТИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"КОНТАКТИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"РЕКЛАМАЦИИ","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"РЕКЛАМАЦИИ","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Lukáš Koválik","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":" 479.52€ / 937.86 лв.","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"479.52€ / 937.86 лв.","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Всички Категории","depth":9,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Всички Категории","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Търси в Продуктите ...","depth":11,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Compares","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Сравни","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Wishlists","depth":8,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Любими","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Поръчка","depth":7,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Поръчка","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Начало","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Начало","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"»","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Поръчка","depth":10,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Поръчка","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Поръчка","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ПОРЪЧКА КАТО РЕГИСТРИРАН","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"|","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"УЛЕСНЕНА ПОРЪЧКА","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Подробности за Доставката","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Име и Фамилия","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Lukáš Koválik","depth":12,"value":"Lukáš Koválik","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"person","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Телефон","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Моля, сверете внимателно въведения номер !","depth":12,"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"phone","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Изберете начин на Доставка","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Получаване от нашия магазин.","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Безплатна Доставка","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.00 €","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Офис на Спиди.","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Безплатна Доставка","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.00 €","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"До Адрес.","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Безплатна Доставка","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.00 €","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Адрес за Доставка","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Нов Адрес: Лукаш Ковлик - +359877878118, София , Богомил Райнов 4 Нов Адрес: Лукаш Ковлик - +359877878118, София , Богомил Райнов 4 Нов Адрес: Лукаш Ковлик - +359877878118, София , Богомил Райнов 4","depth":13,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Нов Адрес: Лукаш Ковлик - +359877878118, София , Богомил Райнов 4","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Изберете начин на Плащане","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Наложен Платеж при получаване в Брой или с Карта","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Кредитна / Дебитна Карта - Плащане онлайн","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Банков Превод","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Купи на Кредит","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ако не искате да ви се обадим за потвърждение напишете","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"„","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Без Обаждане","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"“","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"в полето Инструкции","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Инструкции","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextArea","text":"Допълнителни Инструкции към поръчката","depth":11,"help_text":"","role_description":"text entry area","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Опционално","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Искам Фактура","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Съгласен съм с","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Общите условия","depth":13,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Общите условия","depth":15,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"ЗАВЪРШИ ПОРЪЧКАТА","depth":11,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Обобщение на Поръчката","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1 Артикул","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Скрий Детайлите","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"expand_less","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Твърд диск, Western Digital Red 6TB Plus ( 3.5","depth":12,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Твърд диск, Western Digital Red 6TB Plus ( 3.5\", 256MB, 5400 RPM, SATA 6Gb/s )","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"x","depth":12,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€239","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"76","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"468","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"93","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€479","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"52","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"937","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"86","depth":14,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":13,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Сума","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"€479","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"52","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"937","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"86","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"лв","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Доставка","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0.00€","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Общо","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"479.52€","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Всички цени са с включено ДДС","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"СИГУРНОСТ","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"УСЛОВИЯ ЗА ДОСТАВКА","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"РЕКЛАМАЦИИ","depth":10,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Запишете се за нашият Бюлетин","depth":7,"bounds":{"left":0.0,"top":0.0,"width":0.38541666,"height":0.02},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Запишете се за нашият Бюлетин","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.19930555,"height":0.028888889},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.34097221,"height":0.04},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"kovaliklukas@gmail.com","depth":8,"bounds":{"left":0.35069445,"top":0.0,"width":0.46805555,"height":0.053333335},"value":"kovaliklukas@gmail.com","help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Запиши се","depth":8,"bounds":{"left":0.81875,"top":0.0,"width":0.09166667,"height":0.04},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Facebook","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Twitter","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Instagram","depth":7,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":8,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"xtreme","depth":9,"bounds":{"left":0.0,"top":0.055555556,"width":0.3236111,"height":0.08888889},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"xtreme","depth":10,"bounds":{"left":0.0,"top":0.11666667,"width":0.27847221,"height":0.026666667},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"","depth":10,"bounds":{"left":0.0,"top":0.17666666,"width":0.027777778,"height":0.044444446},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Ако имате въпроси свържете се с нас!","depth":10,"bounds":{"left":0.0,"top":0.17444444,"width":0.2923611,"height":0.027777778},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ако имате въпроси свържете се с нас!","depth":11,"bounds":{"left":0.0,"top":0.17777778,"width":0.17986111,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"info@xtreme.bg","depth":11,"bounds":{"left":0.0,"top":0.22333333,"width":0.06944445,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"info@xtreme.bg","depth":12,"bounds":{"left":0.0,"top":0.22333333,"width":0.06944445,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"+359 886 177 222","depth":10,"bounds":{"left":0.0,"top":0.26555556,"width":0.10069445,"height":0.026666667},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"+359 886 177 222","depth":11,"bounds":{"left":0.0,"top":0.26555556,"width":0.10069445,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Информация","depth":9,"bounds":{"left":0.25416666,"top":0.055555556,"width":0.32291666,"height":0.02111111},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Информация","depth":10,"bounds":{"left":0.25416666,"top":0.052222222,"width":0.075,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Доставка","depth":11,"bounds":{"left":0.25416666,"top":0.096666664,"width":0.044444446,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Доставка","depth":12,"bounds":{"left":0.25416666,"top":0.096666664,"width":0.044444446,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Условия","depth":11,"bounds":{"left":0.25416666,"top":0.12444445,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Условия","depth":12,"bounds":{"left":0.25416666,"top":0.12444445,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Рекламация","depth":11,"bounds":{"left":0.25416666,"top":0.15333334,"width":0.056944445,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Рекламация","depth":12,"bounds":{"left":0.25416666,"top":0.15333334,"width":0.056944445,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Контакти","depth":11,"bounds":{"left":0.25416666,"top":0.18111111,"width":0.043055557,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Контакти","depth":12,"bounds":{"left":0.25416666,"top":0.18111111,"width":0.043055557,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"За Нас","depth":11,"bounds":{"left":0.25416666,"top":0.21,"width":0.030555556,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"За Нас","depth":12,"bounds":{"left":0.25416666,"top":0.21,"width":0.030555556,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Потребител","depth":9,"bounds":{"left":0.59791666,"top":0.055555556,"width":0.3236111,"height":0.02111111},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Потребител","depth":10,"bounds":{"left":0.59791666,"top":0.052222222,"width":0.06736111,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Профил","depth":11,"bounds":{"left":0.59791666,"top":0.096666664,"width":0.036805555,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Профил","depth":12,"bounds":{"left":0.59791666,"top":0.096666664,"width":0.036805555,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"История на Поръчките","depth":11,"bounds":{"left":0.59791666,"top":0.12444445,"width":0.104166664,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"История на Поръчките","depth":12,"bounds":{"left":0.59791666,"top":0.12444445,"width":0.104166664,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Любими","depth":11,"bounds":{"left":0.59791666,"top":0.15333334,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Любими","depth":12,"bounds":{"left":0.59791666,"top":0.15333334,"width":0.03888889,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"GDPR","depth":11,"bounds":{"left":0.59791666,"top":0.18111111,"width":0.025,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"GDPR","depth":12,"bounds":{"left":0.59791666,"top":0.18111111,"width":0.025,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Лични Данни","depth":11,"bounds":{"left":0.59791666,"top":0.21,"width":0.061805554,"height":0.02111111},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Лични Данни","depth":12,"bounds":{"left":0.59791666,"top":0.21,"width":0.061805554,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Методи за Плащане","depth":9,"bounds":{"left":0.9423611,"top":0.055555556,"width":0.057638884,"height":0.027777778},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Методи за Плащане","depth":10,"bounds":{"left":0.9423611,"top":0.055555556,"width":0.057638884,"height":0.026666667},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Наложен Платеж","depth":11,"bounds":{"left":0.9423611,"top":0.104444444,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Кредитна/Дебитна Карта","depth":11,"bounds":{"left":0.9423611,"top":0.13222222,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Банков Превод","depth":11,"bounds":{"left":0.9423611,"top":0.18777777,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"На изплащане ПБ Лични Финанси","depth":11,"bounds":{"left":0.9423611,"top":0.21555555,"width":0.057638884,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Copyright © 2023","depth":8,"bounds":{"left":0.39097223,"top":0.33333334,"width":0.08055556,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Xtreme.bg","depth":8,"bounds":{"left":0.47152779,"top":0.33333334,"width":0.046527777,"height":0.02111111},"help_text":"Xtreme Online Store","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Xtreme.bg","depth":9,"bounds":{"left":0.47152779,"top":0.33333334,"width":0.046527777,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"- Всички права запазени.","depth":8,"bounds":{"left":0.51805556,"top":0.33333334,"width":0.11875,"height":0.02111111},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Онлайн магазин вървящ на","depth":9,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"XCore","depth":9,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"XCore","depth":11,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
3000280852395023611
|
-2184976671633003952
|
click
|
accessibility
|
NULL
|
DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameles DXP4800PLUS-B5F8
Inbox - [EMAIL] - Gmail
Shameless • HBO Max
Shameless • HBO Max
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Proeurópska bublina si po Orbánovom páde vydýchla, víťazná Tisza však môže Brusel prekvapiť — Denník N
Machines - Tailscale
Machines - Tailscale
Screenpipe Dashboard
Screenpipe Dashboard
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 239,76 € (468,93 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Поръчка
Поръчка
Close tab
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
Screenpipe: Open Source 24/7 Screen & Audio Capture : r/software
google maps timeline export - Google Search
google maps timeline export - Google Search
New Tab
New Tab
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
0886 177 222
0886 177 222
[EMAIL]
[EMAIL]
xtreme
НАЧАЛО
НАЧАЛО
МАГАЗИН
МАГАЗИН
БЛОГ
БЛОГ
КОНТАКТИ
КОНТАКТИ
РЕКЛАМАЦИИ
РЕКЛАМАЦИИ
Lukáš Koválik
479.52€ / 937.86 лв.
479.52€ / 937.86 лв.
Всички Категории
Всички Категории
Търси в Продуктите ...
Compares
0
Сравни
Wishlists
0
Любими
Поръчка
Поръчка
Начало
Начало
»
Поръчка
Поръчка
Поръчка
ПОРЪЧКА КАТО РЕГИСТРИРАН
|
УЛЕСНЕНА ПОРЪЧКА
Подробности за Доставката
Име и Фамилия
Lukáš Koválik
person
Телефон
Моля, сверете внимателно въведения номер !
phone
Изберете начин на Доставка
Получаване от нашия магазин.
Безплатна Доставка
0.00 €
Офис на Спиди.
Безплатна Доставка
0.00 €
До Адрес.
Безплатна Доставка
0.00 €
Адрес за Доставка
Нов Адрес: Лукаш Ковлик - [PHONE], София , Богомил Райнов 4 Нов Адрес: Лукаш Ковлик - [PHONE], София , Богомил Райнов 4 Нов Адрес: Лукаш Ковлик - [PHONE], София , Богомил Райнов 4
Нов Адрес: Лукаш Ковлик - [PHONE], София , Богомил Райнов 4
Изберете начин на Плащане
Наложен Платеж при получаване в Брой или с Карта
Кредитна / Дебитна Карта - Плащане онлайн
Банков Превод
Купи на Кредит
Ако не искате да ви се обадим за потвърждение напишете
„
Без Обаждане
“
в полето Инструкции
Инструкции
Допълнителни Инструкции към поръчката
Опционално
Искам Фактура
Съгласен съм с
Общите условия
Общите условия
ЗАВЪРШИ ПОРЪЧКАТА
Обобщение на Поръчката
1 Артикул
Скрий Детайлите
expand_less
Твърд диск, Western Digital Red 6TB Plus ( 3.5
Твърд диск, Western Digital Red 6TB Plus ( 3.5", 256MB, 5400 RPM, SATA 6Gb/s )
2
x
€239
76
/
468
93
лв
€479
52
/
937
86
лв
Сума
€479
52
/
937
86
лв
Доставка
0.00€
Общо
479.52€
Всички цени са с включено ДДС
СИГУРНОСТ
УСЛОВИЯ ЗА ДОСТАВКА
РЕКЛАМАЦИИ
Запишете се за нашият Бюлетин
Запишете се за нашият Бюлетин
Запиши се за нашия онлайн бюлетин и научи първи за промоционални и нови продукти.
[EMAIL]
Запиши се
Facebook
Twitter
Instagram
xtreme
xtreme
Ако имате въпроси свържете се с нас!
Ако имате въпроси свържете се с нас!
[EMAIL]
[EMAIL]
+359 886 177 222
+359 886 177 222
Информация
Информация
Доставка
Доставка
Условия
Условия
Рекламация
Рекламация
Контакти
Контакти
За Нас
За Нас
Потребител
Потребител
Профил
Профил
История на Поръчките
История на Поръчките
Любими
Любими
GDPR
GDPR
Лични Данни
Лични Данни
Методи за Плащане
Методи за Плащане
Наложен Платеж
Кредитна/Дебитна Карта
Банков Превод
На изплащане ПБ Лични Финанси
Copyright © 2023
Xtreme.bg
Xtreme.bg
- Всички права запазени.
Онлайн магазин вървящ на
XCore
XCore...
|
NULL
|