feat: add right-click restorer for current site

- Add RightClickRestorer page with active unlock trigger
- Content script with dual-world strategy (isolated + main world)
- Monkey patch preventDefault/stopPropagation via background executeScript
- Overlay penetration for pointer-events blocking layers
- Delegated main-world injection to avoid CSP restrictions
- Async message handling for reliable state updates
- i18n translations (zh/en) and unit tests
This commit is contained in:
雨霖铃
2026-05-23 12:39:14 +08:00
parent 2d7bb8fc2c
commit fa0f1bdcad
16 changed files with 570 additions and 13 deletions
@@ -0,0 +1,37 @@
import { render, screen, fireEvent } from '@testing-library/react';
import { describe, it, expect, vi, beforeEach } from 'vitest';
import RightClickRestorerPage from '../index';
const mockUnlock = vi.fn();
vi.mock('../useRightClickRestorer', () => ({
useRightClickRestorer: () => ({
domain: 'example.com',
isLoading: false,
isUnlocked: false,
unlock: mockUnlock,
}),
}));
describe('RightClickRestorerPage', () => {
beforeEach(() => {
vi.clearAllMocks();
});
it('should render current domain', () => {
render(<RightClickRestorerPage />);
expect(screen.getByText(/example\.com/)).toBeInTheDocument();
});
it('should render locked status', () => {
render(<RightClickRestorerPage />);
expect(screen.getByText(/statusLocked/)).toBeInTheDocument();
});
it('should call unlock when button clicked', () => {
render(<RightClickRestorerPage />);
const button = screen.getByRole('button');
fireEvent.click(button);
expect(mockUnlock).toHaveBeenCalled();
});
});