9b395f5cc3
Build Chrome Extension / build (push) Waiting to run
Trigger Website Rebuild (Docs Updated) / dispatch (push) Waiting to run
E2E Headed Chrome / e2e-headed (macos-15) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (ubuntu-latest) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (windows-latest) (push) Has been cancelled
CI / build (macos-latest) (push) Has been cancelled
CI / build (ubuntu-latest) (push) Has been cancelled
CI / build (windows-latest) (push) Has been cancelled
CI / unit-test (push) Has been cancelled
CI / bun-test (push) Has been cancelled
CI / adapter-test (push) Has been cancelled
CI / smoke-test (macos-latest) (push) Has been cancelled
CI / smoke-test (ubuntu-latest) (push) Has been cancelled
Security Audit / audit (push) Has been cancelled
31 lines
1.1 KiB
JavaScript
31 lines
1.1 KiB
JavaScript
import { cli } from '@jackwener/opencli/registry';
|
|
cli({
|
|
site: 'tiktok',
|
|
name: 'save',
|
|
access: 'write',
|
|
description: 'Add a TikTok video to Favorites',
|
|
domain: 'www.tiktok.com',
|
|
args: [
|
|
{ name: 'url', required: true, positional: true, help: 'TikTok video URL' },
|
|
],
|
|
columns: ['status', 'url'],
|
|
pipeline: [
|
|
{ navigate: { url: '${{ args.url }}', settleMs: 6000 } },
|
|
{ evaluate: `(async () => {
|
|
const url = \${{ args.url | json }};
|
|
const btn = document.querySelector('[data-e2e="bookmark-icon"]') ||
|
|
document.querySelector('[data-e2e="collect-icon"]');
|
|
if (!btn) throw new Error('Favorites button not found - make sure you are logged in');
|
|
const container = btn.closest('button') || btn.closest('[role="button"]') || btn;
|
|
const aria = (container.getAttribute('aria-label') || '').toLowerCase();
|
|
if (aria.includes('remove from favorites') || aria.includes('取消收藏')) {
|
|
return [{ status: 'Already in Favorites', url: url }];
|
|
}
|
|
container.click();
|
|
await new Promise(r => setTimeout(r, 2000));
|
|
return [{ status: 'Added to Favorites', url: url }];
|
|
})()
|
|
` },
|
|
],
|
|
});
|