設定時間後放大倒數
開始讀書按開始,休息時按暫停
2027年1月16日
2028年5月20日
自動依距離由近到遠排列
Exam Timer
準備開始
即使切換到其他頁面,回來後仍會依實際經過時間更新。
名稱與日期都可以修改,時間軸會自動重新排序。
兩台裝置填入相同設定後,自動同步同一份加密資料。
請妥善保存;遺失後無法解密雲端資料。
在 Supabase SQL Editor 執行以下內容。資料在瀏覽器加密後才上傳。
create table if not exists public.study_planner_sync ( room_id text primary key, payload jsonb not null, updated_at timestamptz not null default now() ); alter table public.study_planner_sync enable row level security; grant select, insert, update on public.study_planner_sync to anon; drop policy if exists "planner read" on public.study_planner_sync; drop policy if exists "planner insert" on public.study_planner_sync; drop policy if exists "planner update" on public.study_planner_sync; create policy "planner read" on public.study_planner_sync for select to anon using (true); create policy "planner insert" on public.study_planner_sync for insert to anon with check (true); create policy "planner update" on public.study_planner_sync for update to anon using (true) with check (true);