Initial commit
15
pages/content-runtime/README.md
Normal file
@@ -0,0 +1,15 @@
|
||||
# Content Runtime Script
|
||||
|
||||
This tool allows users to inject scripts (Console and UI) during runtime into all pages specified by you.
|
||||
|
||||
### Add New Script
|
||||
|
||||
1. Copy `matches/example` folder and paste it with other name and edit content.
|
||||
2. Define somewhere(e.g in `popup`(You have declared it as default)):
|
||||
|
||||
```ts
|
||||
await chrome.scripting.executeScript({
|
||||
...,
|
||||
files: ['/content-runtime/{matches_folder_name}.iife.js'],
|
||||
})
|
||||
```
|
||||
49
pages/content-runtime/build.mts
Normal file
@@ -0,0 +1,49 @@
|
||||
import { resolve } from 'node:path';
|
||||
import { makeEntryPointPlugin } from '@extension/hmr';
|
||||
import { getContentScriptEntries, withPageConfig } from '@extension/vite-config';
|
||||
import { IS_DEV } from '@extension/env';
|
||||
import { build } from 'vite';
|
||||
import { build as buildTW } from 'tailwindcss/lib/cli/build';
|
||||
|
||||
const rootDir = resolve(import.meta.dirname);
|
||||
const srcDir = resolve(rootDir, 'src');
|
||||
const matchesDir = resolve(srcDir, 'matches');
|
||||
|
||||
const configs = Object.entries(getContentScriptEntries(matchesDir)).map(([name, entry]) => ({
|
||||
name,
|
||||
config: withPageConfig({
|
||||
mode: IS_DEV ? 'development' : undefined,
|
||||
resolve: {
|
||||
alias: {
|
||||
'@src': srcDir,
|
||||
},
|
||||
},
|
||||
publicDir: resolve(rootDir, 'public'),
|
||||
plugins: [IS_DEV && makeEntryPointPlugin()],
|
||||
build: {
|
||||
lib: {
|
||||
name: name,
|
||||
formats: ['iife'],
|
||||
entry,
|
||||
fileName: name,
|
||||
},
|
||||
outDir: resolve(rootDir, '..', '..', 'dist', 'content-runtime'),
|
||||
},
|
||||
}),
|
||||
}));
|
||||
|
||||
const builds = configs.map(async ({ name, config }) => {
|
||||
const folder = resolve(matchesDir, name);
|
||||
const args = {
|
||||
['--input']: resolve(folder, 'index.css'),
|
||||
['--output']: resolve(rootDir, 'dist', name, 'index.css'),
|
||||
['--config']: resolve(rootDir, 'tailwind.config.ts'),
|
||||
['--watch']: IS_DEV,
|
||||
};
|
||||
await buildTW(args);
|
||||
//@ts-expect-error This is hidden property into vite's resolveConfig()
|
||||
config.configFile = false;
|
||||
await build(config);
|
||||
});
|
||||
|
||||
await Promise.all(builds);
|
||||
32
pages/content-runtime/package.json
Normal file
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"name": "@extension/content-runtime-script",
|
||||
"version": "0.5.0",
|
||||
"description": "chrome extension - content runtime script",
|
||||
"type": "module",
|
||||
"private": true,
|
||||
"sideEffects": true,
|
||||
"files": [
|
||||
"dist/**"
|
||||
],
|
||||
"scripts": {
|
||||
"clean:node_modules": "pnpx rimraf node_modules",
|
||||
"clean:turbo": "rimraf .turbo",
|
||||
"clean": "pnpm clean:turbo && pnpm clean:node_modules",
|
||||
"build": "tsx build.mts",
|
||||
"dev": "tsx build.mts",
|
||||
"lint": "eslint .",
|
||||
"lint:fix": "pnpm lint --fix",
|
||||
"format": "prettier . --write --ignore-path ../../.prettierignore",
|
||||
"type-check": "tsc --noEmit"
|
||||
},
|
||||
"dependencies": {
|
||||
"@extension/env": "workspace:*",
|
||||
"@extension/ui": "workspace:*"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@extension/tsconfig": "workspace:*",
|
||||
"@extension/vite-config": "workspace:*",
|
||||
"@extension/hmr": "workspace:*",
|
||||
"@extension/shared": "workspace:*"
|
||||
}
|
||||
}
|
||||
9
pages/content-runtime/src/matches/all/App.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { useEffect } from 'react';
|
||||
|
||||
export default function App() {
|
||||
useEffect(() => {
|
||||
console.log('[CEB] All runtime content view loaded');
|
||||
}, []);
|
||||
|
||||
return <div className="ceb-all-runtime-content-view-text">All runtime content view</div>;
|
||||
}
|
||||
5
pages/content-runtime/src/matches/all/index.css
Normal file
@@ -0,0 +1,5 @@
|
||||
@import '@extension/ui/global.css';
|
||||
|
||||
.ceb-all-runtime-content-view-text {
|
||||
font-size: 20px;
|
||||
}
|
||||
5
pages/content-runtime/src/matches/all/index.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
import inlineCss from '../../../dist/all/index.css?inline';
|
||||
import { initAppWithShadow } from '@extension/shared';
|
||||
import App from '@src/matches/all/App';
|
||||
|
||||
initAppWithShadow({ id: 'CEB-extension-runtime-all', app: <App />, inlineCss });
|
||||
9
pages/content-runtime/src/matches/example/App.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { useEffect } from 'react';
|
||||
|
||||
export default function App() {
|
||||
useEffect(() => {
|
||||
console.log('[CEB] Example runtime content view loaded');
|
||||
}, []);
|
||||
|
||||
return <div className="ceb-example-runtime-content-view-text">Example runtime content view</div>;
|
||||
}
|
||||
5
pages/content-runtime/src/matches/example/index.css
Normal file
@@ -0,0 +1,5 @@
|
||||
@import '@extension/ui/global.css';
|
||||
|
||||
.ceb-example-runtime-content-view-text {
|
||||
font-size: 20px;
|
||||
}
|
||||
5
pages/content-runtime/src/matches/example/index.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
import inlineCss from '../../../dist/example/index.css?inline';
|
||||
import { initAppWithShadow } from '@extension/shared';
|
||||
import App from '@src/matches/example/App';
|
||||
|
||||
initAppWithShadow({ id: 'CEB-extension-runtime-example', app: <App />, inlineCss });
|
||||
5
pages/content-runtime/tailwind.config.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import { withUI } from '@extension/ui';
|
||||
|
||||
export default withUI({
|
||||
content: ['src/**/*.tsx'],
|
||||
});
|
||||
5
pages/content-runtime/tailwind.d.ts
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
declare module 'tailwindcss/lib/cli/build';
|
||||
declare module '*?inline' {
|
||||
const src: string;
|
||||
export default src;
|
||||
}
|
||||
12
pages/content-runtime/tsconfig.json
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"extends": "@extension/tsconfig/base",
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"@src/*": ["src/*"]
|
||||
},
|
||||
"types": ["chrome", "node", "./tailwind.d.ts"],
|
||||
"allowImportingTsExtensions": true
|
||||
},
|
||||
"include": ["src", "build.mts", "tailwind.config.ts"]
|
||||
}
|
||||
23
pages/content-ui/README.md
Normal file
@@ -0,0 +1,23 @@
|
||||
# Content UI Script
|
||||
|
||||
This tool allows you to inject React Components into all pages specified by you.
|
||||
|
||||
### Add New Script
|
||||
|
||||
1. Copy `matches/example` folder and paste it with other name and edit content.
|
||||
|
||||
> [!NOTE]
|
||||
> Remember to edit import:
|
||||
> ```ts
|
||||
> import App from '@src/matches/{new_folder}/App';
|
||||
> ```
|
||||
|
||||
2. Edit `manifest.ts`:
|
||||
- In `content-scripts` section add object with:
|
||||
|
||||
```ts
|
||||
{
|
||||
matches: ['URL_FOR_INJECT'],
|
||||
js: ['content-ui/{matches_folder_name}.iife.js']
|
||||
}
|
||||
```
|
||||
49
pages/content-ui/build.mts
Normal file
@@ -0,0 +1,49 @@
|
||||
import { resolve } from 'node:path';
|
||||
import { makeEntryPointPlugin } from '@extension/hmr';
|
||||
import { getContentScriptEntries, withPageConfig } from '@extension/vite-config';
|
||||
import { IS_DEV } from '@extension/env';
|
||||
import { build } from 'vite';
|
||||
import { build as buildTW } from 'tailwindcss/lib/cli/build';
|
||||
|
||||
const rootDir = resolve(import.meta.dirname);
|
||||
const srcDir = resolve(rootDir, 'src');
|
||||
const matchesDir = resolve(srcDir, 'matches');
|
||||
|
||||
const configs = Object.entries(getContentScriptEntries(matchesDir)).map(([name, entry]) => ({
|
||||
name,
|
||||
config: withPageConfig({
|
||||
mode: IS_DEV ? 'development' : undefined,
|
||||
resolve: {
|
||||
alias: {
|
||||
'@src': srcDir,
|
||||
},
|
||||
},
|
||||
publicDir: resolve(rootDir, 'public'),
|
||||
plugins: [IS_DEV && makeEntryPointPlugin()],
|
||||
build: {
|
||||
lib: {
|
||||
name: name,
|
||||
formats: ['iife'],
|
||||
entry,
|
||||
fileName: name,
|
||||
},
|
||||
outDir: resolve(rootDir, '..', '..', 'dist', 'content-ui'),
|
||||
},
|
||||
}),
|
||||
}));
|
||||
|
||||
const builds = configs.map(async ({ name, config }) => {
|
||||
const folder = resolve(matchesDir, name);
|
||||
const args = {
|
||||
['--input']: resolve(folder, 'index.css'),
|
||||
['--output']: resolve(rootDir, 'dist', name, 'index.css'),
|
||||
['--config']: resolve(rootDir, 'tailwind.config.ts'),
|
||||
['--watch']: IS_DEV,
|
||||
};
|
||||
await buildTW(args);
|
||||
//@ts-expect-error This is hidden property into vite's resolveConfig()
|
||||
config.configFile = false;
|
||||
await build(config);
|
||||
});
|
||||
|
||||
await Promise.all(builds);
|
||||
35
pages/content-ui/package.json
Normal file
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"name": "@extension/content-ui",
|
||||
"version": "0.5.0",
|
||||
"description": "chrome extension - content ui",
|
||||
"type": "module",
|
||||
"private": true,
|
||||
"sideEffects": true,
|
||||
"files": [
|
||||
"dist/**"
|
||||
],
|
||||
"scripts": {
|
||||
"clean:bundle": "rimraf dist",
|
||||
"clean:node_modules": "pnpx rimraf node_modules",
|
||||
"clean:turbo": "rimraf .turbo",
|
||||
"clean": "pnpm clean:bundle && pnpm clean:node_modules && pnpm clean:turbo",
|
||||
"build": "tsx build.mts",
|
||||
"dev": "tsx build.mts",
|
||||
"lint": "eslint .",
|
||||
"lint:fix": "pnpm lint --fix",
|
||||
"format": "prettier . --write --ignore-path ../../.prettierignore",
|
||||
"type-check": "tsc --noEmit"
|
||||
},
|
||||
"dependencies": {
|
||||
"@extension/shared": "workspace:*",
|
||||
"@extension/ui": "workspace:*",
|
||||
"@extension/i18n": "workspace:*",
|
||||
"@extension/env": "workspace:*"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@extension/hmr": "workspace:*",
|
||||
"@extension/tailwindcss-config": "workspace:*",
|
||||
"@extension/tsconfig": "workspace:*",
|
||||
"@extension/vite-config": "workspace:*"
|
||||
}
|
||||
}
|
||||
7
pages/content-ui/public/logo.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 841.9 595.3">
|
||||
<g fill="#61DAFB">
|
||||
<path d="M666.3 296.5c0-32.5-40.7-63.3-103.1-82.4 14.4-63.6 8-114.2-20.2-130.4-6.5-3.8-14.1-5.6-22.4-5.6v22.3c4.6 0 8.3.9 11.4 2.6 13.6 7.8 19.5 37.5 14.9 75.7-1.1 9.4-2.9 19.3-5.1 29.4-19.6-4.8-41-8.5-63.5-10.9-13.5-18.5-27.5-35.3-41.6-50 32.6-30.3 63.2-46.9 84-46.9V78c-27.5 0-63.5 19.6-99.9 53.6-36.4-33.8-72.4-53.2-99.9-53.2v22.3c20.7 0 51.4 16.5 84 46.6-14 14.7-28 31.4-41.3 49.9-22.6 2.4-44 6.1-63.6 11-2.3-10-4-19.7-5.2-29-4.7-38.2 1.1-67.9 14.6-75.8 3-1.8 6.9-2.6 11.5-2.6V78.5c-8.4 0-16 1.8-22.6 5.6-28.1 16.2-34.4 66.7-19.9 130.1-62.2 19.2-102.7 49.9-102.7 82.3 0 32.5 40.7 63.3 103.1 82.4-14.4 63.6-8 114.2 20.2 130.4 6.5 3.8 14.1 5.6 22.5 5.6 27.5 0 63.5-19.6 99.9-53.6 36.4 33.8 72.4 53.2 99.9 53.2 8.4 0 16-1.8 22.6-5.6 28.1-16.2 34.4-66.7 19.9-130.1 62-19.1 102.5-49.9 102.5-82.3zm-130.2-66.7c-3.7 12.9-8.3 26.2-13.5 39.5-4.1-8-8.4-16-13.1-24-4.6-8-9.5-15.8-14.4-23.4 14.2 2.1 27.9 4.7 41 7.9zm-45.8 106.5c-7.8 13.5-15.8 26.3-24.1 38.2-14.9 1.3-30 2-45.2 2-15.1 0-30.2-.7-45-1.9-8.3-11.9-16.4-24.6-24.2-38-7.6-13.1-14.5-26.4-20.8-39.8 6.2-13.4 13.2-26.8 20.7-39.9 7.8-13.5 15.8-26.3 24.1-38.2 14.9-1.3 30-2 45.2-2 15.1 0 30.2.7 45 1.9 8.3 11.9 16.4 24.6 24.2 38 7.6 13.1 14.5 26.4 20.8 39.8-6.3 13.4-13.2 26.8-20.7 39.9zm32.3-13c5.4 13.4 10 26.8 13.8 39.8-13.1 3.2-26.9 5.9-41.2 8 4.9-7.7 9.8-15.6 14.4-23.7 4.6-8 8.9-16.1 13-24.1zM421.2 430c-9.3-9.6-18.6-20.3-27.8-32 9 .4 18.2.7 27.5.7 9.4 0 18.7-.2 27.8-.7-9 11.7-18.3 22.4-27.5 32zm-74.4-58.9c-14.2-2.1-27.9-4.7-41-7.9 3.7-12.9 8.3-26.2 13.5-39.5 4.1 8 8.4 16 13.1 24 4.7 8 9.5 15.8 14.4 23.4zM420.7 163c9.3 9.6 18.6 20.3 27.8 32-9-.4-18.2-.7-27.5-.7-9.4 0-18.7.2-27.8.7 9-11.7 18.3-22.4 27.5-32zm-74 58.9c-4.9 7.7-9.8 15.6-14.4 23.7-4.6 8-8.9 16-13 24-5.4-13.4-10-26.8-13.8-39.8 13.1-3.1 26.9-5.8 41.2-7.9zm-90.5 125.2c-35.4-15.1-58.3-34.9-58.3-50.6 0-15.7 22.9-35.6 58.3-50.6 8.6-3.7 18-7 27.7-10.1 5.7 19.6 13.2 40 22.5 60.9-9.2 20.8-16.6 41.1-22.2 60.6-9.9-3.1-19.3-6.5-28-10.2zM310 490c-13.6-7.8-19.5-37.5-14.9-75.7 1.1-9.4 2.9-19.3 5.1-29.4 19.6 4.8 41 8.5 63.5 10.9 13.5 18.5 27.5 35.3 41.6 50-32.6 30.3-63.2 46.9-84 46.9-4.5-.1-8.3-1-11.3-2.7zm237.2-76.2c4.7 38.2-1.1 67.9-14.6 75.8-3 1.8-6.9 2.6-11.5 2.6-20.7 0-51.4-16.5-84-46.6 14-14.7 28-31.4 41.3-49.9 22.6-2.4 44-6.1 63.6-11 2.3 10.1 4.1 19.8 5.2 29.1zm38.5-66.7c-8.6 3.7-18 7-27.7 10.1-5.7-19.6-13.2-40-22.5-60.9 9.2-20.8 16.6-41.1 22.2-60.6 9.9 3.1 19.3 6.5 28.1 10.2 35.4 15.1 58.3 34.9 58.3 50.6-.1 15.7-23 35.6-58.4 50.6zM320.8 78.4z"/>
|
||||
<circle cx="420.9" cy="296.5" r="45.7"/>
|
||||
<path d="M520.5 78.1z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
18
pages/content-ui/src/matches/all/App.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
import { t } from '@extension/i18n';
|
||||
import { ToggleButton } from '@extension/ui';
|
||||
import { useEffect } from 'react';
|
||||
|
||||
export default function App() {
|
||||
useEffect(() => {
|
||||
console.log('[CEB] Content ui all loaded');
|
||||
}, []);
|
||||
|
||||
return (
|
||||
<div className="flex items-center justify-between gap-2 rounded bg-blue-100 px-2 py-1">
|
||||
<div className="flex gap-1 text-sm text-blue-500">
|
||||
Edit <strong className="text-blue-700">pages/content-ui/src/matches/all/App.tsx</strong> and save to reload.
|
||||
</div>
|
||||
<ToggleButton className={'mt-0'}>{t('toggleTheme')}</ToggleButton>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
1
pages/content-ui/src/matches/all/index.css
Normal file
@@ -0,0 +1 @@
|
||||
@import '@extension/ui/global.css';
|
||||
5
pages/content-ui/src/matches/all/index.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
import inlineCss from '../../../dist/all/index.css?inline';
|
||||
import { initAppWithShadow } from '@extension/shared';
|
||||
import App from '@src/matches/all/App';
|
||||
|
||||
initAppWithShadow({ id: 'CEB-extension-all', app: <App />, inlineCss });
|
||||
18
pages/content-ui/src/matches/example/App.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
import { t } from '@extension/i18n';
|
||||
import { ToggleButton } from '@extension/ui';
|
||||
import { useEffect } from 'react';
|
||||
|
||||
export default function App() {
|
||||
useEffect(() => {
|
||||
console.log('[CEB] Content ui example loaded');
|
||||
}, []);
|
||||
|
||||
return (
|
||||
<div className="flex items-center justify-between gap-2 rounded bg-blue-100 px-2 py-1">
|
||||
<div className="flex gap-1 text-xs text-blue-500">
|
||||
Edit <strong className="text-blue-700">pages/content-ui/src/matches/example/App.tsx</strong> and save to reload.
|
||||
</div>
|
||||
<ToggleButton className={'mt-0'}>{t('toggleTheme')}</ToggleButton>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
1
pages/content-ui/src/matches/example/index.css
Normal file
@@ -0,0 +1 @@
|
||||
@import '@extension/ui/global.css';
|
||||
5
pages/content-ui/src/matches/example/index.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
import inlineCss from '../../../dist/example/index.css?inline';
|
||||
import { initAppWithShadow } from '@extension/shared';
|
||||
import App from '@src/matches/example/App';
|
||||
|
||||
initAppWithShadow({ id: 'CEB-extension-example', app: <App />, inlineCss });
|
||||
5
pages/content-ui/tailwind.config.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import { withUI } from '@extension/ui';
|
||||
|
||||
export default withUI({
|
||||
content: ['src/**/*.tsx'],
|
||||
});
|
||||
5
pages/content-ui/tailwind.d.ts
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
declare module 'tailwindcss/lib/cli/build';
|
||||
declare module '*?inline' {
|
||||
const src: string;
|
||||
export default src;
|
||||
}
|
||||
11
pages/content-ui/tsconfig.json
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"extends": "@extension/tsconfig/base",
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"@src/*": ["src/*"]
|
||||
},
|
||||
"types": ["chrome", "node", "./tailwind.d.ts"]
|
||||
},
|
||||
"include": ["src", "tailwind.config.ts", "build.mts"]
|
||||
}
|
||||
18
pages/content/README.md
Normal file
@@ -0,0 +1,18 @@
|
||||
# Content Script
|
||||
|
||||
This tool allows you to inject Console Scripts into all pages specified by you.
|
||||
|
||||
https://developer.chrome.com/docs/extensions/develop/concepts/content-scripts
|
||||
|
||||
### Add New Script
|
||||
|
||||
1. Copy `matches/example` folder and paste it with other name and edit content.
|
||||
2. Edit `manifest.ts`:
|
||||
- In `content-scripts` section add object with:
|
||||
|
||||
```ts
|
||||
{
|
||||
matches: ['URL_FOR_INJECT'],
|
||||
js: ['content/{matches_folder_name}.iife.js']
|
||||
}
|
||||
```
|
||||
39
pages/content/build.mts
Normal file
@@ -0,0 +1,39 @@
|
||||
import { resolve } from 'node:path';
|
||||
import { makeEntryPointPlugin } from '@extension/hmr';
|
||||
import { getContentScriptEntries, withPageConfig } from '@extension/vite-config';
|
||||
import { IS_DEV } from '@extension/env';
|
||||
import { build } from 'vite';
|
||||
|
||||
const rootDir = resolve(import.meta.dirname);
|
||||
const srcDir = resolve(rootDir, 'src');
|
||||
const matchesDir = resolve(srcDir, 'matches');
|
||||
|
||||
const configs = Object.entries(getContentScriptEntries(matchesDir)).map(([name, entry]) =>
|
||||
withPageConfig({
|
||||
mode: IS_DEV ? 'development' : undefined,
|
||||
resolve: {
|
||||
alias: {
|
||||
'@src': srcDir,
|
||||
},
|
||||
},
|
||||
publicDir: resolve(rootDir, 'public'),
|
||||
plugins: [IS_DEV && makeEntryPointPlugin()],
|
||||
build: {
|
||||
lib: {
|
||||
name: name,
|
||||
formats: ['iife'],
|
||||
entry,
|
||||
fileName: name,
|
||||
},
|
||||
outDir: resolve(rootDir, '..', '..', 'dist', 'content'),
|
||||
},
|
||||
}),
|
||||
);
|
||||
|
||||
const builds = configs.map(async config => {
|
||||
//@ts-expect-error This is hidden property into vite's resolveConfig()
|
||||
config.configFile = false;
|
||||
await build(config);
|
||||
});
|
||||
|
||||
await Promise.all(builds);
|
||||
33
pages/content/package.json
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"name": "@extension/content-script",
|
||||
"version": "0.5.0",
|
||||
"description": "chrome extension - content script",
|
||||
"type": "module",
|
||||
"private": true,
|
||||
"sideEffects": true,
|
||||
"files": [
|
||||
"dist/**"
|
||||
],
|
||||
"scripts": {
|
||||
"clean:bundle": "rimraf dist",
|
||||
"clean:node_modules": "pnpx rimraf node_modules",
|
||||
"clean:turbo": "rimraf .turbo",
|
||||
"clean": "pnpm clean:bundle && pnpm clean:turbo && pnpm clean:node_modules",
|
||||
"build": "tsx build.mts",
|
||||
"dev": "tsx build.mts",
|
||||
"lint": "eslint .",
|
||||
"lint:fix": "pnpm lint --fix",
|
||||
"format": "prettier . --write --ignore-path ../../.prettierignore",
|
||||
"type-check": "tsc --noEmit"
|
||||
},
|
||||
"dependencies": {
|
||||
"@extension/shared": "workspace:*",
|
||||
"@extension/storage": "workspace:*",
|
||||
"@extension/env": "workspace:*"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@extension/hmr": "workspace:*",
|
||||
"@extension/tsconfig": "workspace:*",
|
||||
"@extension/vite-config": "workspace:*"
|
||||
}
|
||||
}
|
||||
7
pages/content/public/logo.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 841.9 595.3">
|
||||
<g fill="#61DAFB">
|
||||
<path d="M666.3 296.5c0-32.5-40.7-63.3-103.1-82.4 14.4-63.6 8-114.2-20.2-130.4-6.5-3.8-14.1-5.6-22.4-5.6v22.3c4.6 0 8.3.9 11.4 2.6 13.6 7.8 19.5 37.5 14.9 75.7-1.1 9.4-2.9 19.3-5.1 29.4-19.6-4.8-41-8.5-63.5-10.9-13.5-18.5-27.5-35.3-41.6-50 32.6-30.3 63.2-46.9 84-46.9V78c-27.5 0-63.5 19.6-99.9 53.6-36.4-33.8-72.4-53.2-99.9-53.2v22.3c20.7 0 51.4 16.5 84 46.6-14 14.7-28 31.4-41.3 49.9-22.6 2.4-44 6.1-63.6 11-2.3-10-4-19.7-5.2-29-4.7-38.2 1.1-67.9 14.6-75.8 3-1.8 6.9-2.6 11.5-2.6V78.5c-8.4 0-16 1.8-22.6 5.6-28.1 16.2-34.4 66.7-19.9 130.1-62.2 19.2-102.7 49.9-102.7 82.3 0 32.5 40.7 63.3 103.1 82.4-14.4 63.6-8 114.2 20.2 130.4 6.5 3.8 14.1 5.6 22.5 5.6 27.5 0 63.5-19.6 99.9-53.6 36.4 33.8 72.4 53.2 99.9 53.2 8.4 0 16-1.8 22.6-5.6 28.1-16.2 34.4-66.7 19.9-130.1 62-19.1 102.5-49.9 102.5-82.3zm-130.2-66.7c-3.7 12.9-8.3 26.2-13.5 39.5-4.1-8-8.4-16-13.1-24-4.6-8-9.5-15.8-14.4-23.4 14.2 2.1 27.9 4.7 41 7.9zm-45.8 106.5c-7.8 13.5-15.8 26.3-24.1 38.2-14.9 1.3-30 2-45.2 2-15.1 0-30.2-.7-45-1.9-8.3-11.9-16.4-24.6-24.2-38-7.6-13.1-14.5-26.4-20.8-39.8 6.2-13.4 13.2-26.8 20.7-39.9 7.8-13.5 15.8-26.3 24.1-38.2 14.9-1.3 30-2 45.2-2 15.1 0 30.2.7 45 1.9 8.3 11.9 16.4 24.6 24.2 38 7.6 13.1 14.5 26.4 20.8 39.8-6.3 13.4-13.2 26.8-20.7 39.9zm32.3-13c5.4 13.4 10 26.8 13.8 39.8-13.1 3.2-26.9 5.9-41.2 8 4.9-7.7 9.8-15.6 14.4-23.7 4.6-8 8.9-16.1 13-24.1zM421.2 430c-9.3-9.6-18.6-20.3-27.8-32 9 .4 18.2.7 27.5.7 9.4 0 18.7-.2 27.8-.7-9 11.7-18.3 22.4-27.5 32zm-74.4-58.9c-14.2-2.1-27.9-4.7-41-7.9 3.7-12.9 8.3-26.2 13.5-39.5 4.1 8 8.4 16 13.1 24 4.7 8 9.5 15.8 14.4 23.4zM420.7 163c9.3 9.6 18.6 20.3 27.8 32-9-.4-18.2-.7-27.5-.7-9.4 0-18.7.2-27.8.7 9-11.7 18.3-22.4 27.5-32zm-74 58.9c-4.9 7.7-9.8 15.6-14.4 23.7-4.6 8-8.9 16-13 24-5.4-13.4-10-26.8-13.8-39.8 13.1-3.1 26.9-5.8 41.2-7.9zm-90.5 125.2c-35.4-15.1-58.3-34.9-58.3-50.6 0-15.7 22.9-35.6 58.3-50.6 8.6-3.7 18-7 27.7-10.1 5.7 19.6 13.2 40 22.5 60.9-9.2 20.8-16.6 41.1-22.2 60.6-9.9-3.1-19.3-6.5-28-10.2zM310 490c-13.6-7.8-19.5-37.5-14.9-75.7 1.1-9.4 2.9-19.3 5.1-29.4 19.6 4.8 41 8.5 63.5 10.9 13.5 18.5 27.5 35.3 41.6 50-32.6 30.3-63.2 46.9-84 46.9-4.5-.1-8.3-1-11.3-2.7zm237.2-76.2c4.7 38.2-1.1 67.9-14.6 75.8-3 1.8-6.9 2.6-11.5 2.6-20.7 0-51.4-16.5-84-46.6 14-14.7 28-31.4 41.3-49.9 22.6-2.4 44-6.1 63.6-11 2.3 10.1 4.1 19.8 5.2 29.1zm38.5-66.7c-8.6 3.7-18 7-27.7 10.1-5.7-19.6-13.2-40-22.5-60.9 9.2-20.8 16.6-41.1 22.2-60.6 9.9 3.1 19.3 6.5 28.1 10.2 35.4 15.1 58.3 34.9 58.3 50.6-.1 15.7-23 35.6-58.4 50.6zM320.8 78.4z"/>
|
||||
<circle cx="420.9" cy="296.5" r="45.7"/>
|
||||
<path d="M520.5 78.1z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
5
pages/content/src/matches/all/index.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import { sampleFunction } from '@src/sample-function';
|
||||
|
||||
console.log('[CEB] All content script loaded');
|
||||
|
||||
void sampleFunction();
|
||||
5
pages/content/src/matches/example/index.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import { sampleFunction } from '@src/sample-function';
|
||||
|
||||
console.log('[CEB] Example content script loaded');
|
||||
|
||||
void sampleFunction();
|
||||
3
pages/content/src/sample-function.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
export const sampleFunction = () => {
|
||||
console.log('content script - sampleFunction() called from another module');
|
||||
};
|
||||
11
pages/content/tsconfig.json
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"extends": "@extension/tsconfig/base",
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"@src/*": ["src/*"]
|
||||
},
|
||||
"types": ["chrome", "node"]
|
||||
},
|
||||
"include": ["src", "build.mts"]
|
||||
}
|
||||
12
pages/devtools-panel/index.html
Normal file
@@ -0,0 +1,12 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<title>Devtools Panel</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="app-container"></div>
|
||||
<script type="module" src="./src/index.tsx"></script>
|
||||
</body>
|
||||
</html>
|
||||
39
pages/devtools-panel/package.json
Normal file
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"name": "@extension/devtools-panel",
|
||||
"version": "0.5.0",
|
||||
"description": "chrome extension - devtools panel",
|
||||
"type": "module",
|
||||
"private": true,
|
||||
"sideEffects": true,
|
||||
"files": [
|
||||
"dist/**"
|
||||
],
|
||||
"scripts": {
|
||||
"clean:node_modules": "pnpx rimraf node_modules",
|
||||
"clean:turbo": "rimraf .turbo",
|
||||
"clean": "pnpm clean:turbo && pnpm clean:node_modules",
|
||||
"build": "vite build",
|
||||
"dev": "vite build --mode development",
|
||||
"lint": "eslint .",
|
||||
"lint:fix": "pnpm lint --fix",
|
||||
"format": "prettier . --write --ignore-path ../../.prettierignore",
|
||||
"type-check": "tsc --noEmit"
|
||||
},
|
||||
"dependencies": {
|
||||
"@extension/shared": "workspace:*",
|
||||
"@extension/storage": "workspace:*",
|
||||
"@extension/i18n": "workspace:*",
|
||||
"@extension/ui": "workspace:*"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@extension/tailwindcss-config": "workspace:*",
|
||||
"@extension/tsconfig": "workspace:*",
|
||||
"@extension/vite-config": "workspace:*"
|
||||
},
|
||||
"postcss": {
|
||||
"plugins": {
|
||||
"tailwindcss": {},
|
||||
"autoprefixer": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
124
pages/devtools-panel/public/logo_horizontal.svg
Normal file
|
After Width: | Height: | Size: 58 KiB |
117
pages/devtools-panel/public/logo_horizontal_dark.svg
Normal file
|
After Width: | Height: | Size: 60 KiB |
28
pages/devtools-panel/src/Panel.css
Normal file
@@ -0,0 +1,28 @@
|
||||
.App {
|
||||
text-align: center;
|
||||
height: 100vh;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 2rem;
|
||||
}
|
||||
|
||||
.App-logo {
|
||||
height: 40vmin;
|
||||
}
|
||||
|
||||
.App-header {
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: calc(10px + 2vmin);
|
||||
}
|
||||
|
||||
code {
|
||||
background: rgba(148, 163, 184, 0.5);
|
||||
border-radius: 0.25rem;
|
||||
padding: 0.2rem 0.5rem;
|
||||
}
|
||||
45
pages/devtools-panel/src/Panel.tsx
Normal file
@@ -0,0 +1,45 @@
|
||||
import '@src/Panel.css';
|
||||
import { t } from '@extension/i18n';
|
||||
import { PROJECT_URL_OBJECT, useStorage, withErrorBoundary, withSuspense } from '@extension/shared';
|
||||
import { exampleThemeStorage } from '@extension/storage';
|
||||
import { cn, ErrorDisplay, LoadingSpinner } from '@extension/ui';
|
||||
import type { ComponentPropsWithoutRef } from 'react';
|
||||
|
||||
const Panel = () => {
|
||||
const { isLight } = useStorage(exampleThemeStorage);
|
||||
const logo = isLight ? 'devtools-panel/logo_horizontal.svg' : 'devtools-panel/logo_horizontal_dark.svg';
|
||||
|
||||
const goGithubSite = () => chrome.tabs.create(PROJECT_URL_OBJECT);
|
||||
|
||||
return (
|
||||
<div className={cn('App', isLight ? 'bg-slate-50' : 'bg-gray-800')}>
|
||||
<header className={cn('App-header', isLight ? 'text-gray-900' : 'text-gray-100')}>
|
||||
<button onClick={goGithubSite}>
|
||||
<img src={chrome.runtime.getURL(logo)} className="App-logo" alt="logo" />
|
||||
</button>
|
||||
<p>
|
||||
Edit <code>pages/devtools-panel/src/Panel.tsx</code>
|
||||
</p>
|
||||
<ToggleButton onClick={exampleThemeStorage.toggle}>{t('toggleTheme')}</ToggleButton>
|
||||
</header>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
const ToggleButton = (props: ComponentPropsWithoutRef<'button'>) => {
|
||||
const { isLight } = useStorage(exampleThemeStorage);
|
||||
|
||||
return (
|
||||
<button
|
||||
className={cn(
|
||||
props.className,
|
||||
'mt-4 rounded px-4 py-1 font-bold shadow hover:scale-105',
|
||||
isLight ? 'bg-white text-black' : 'bg-black text-white',
|
||||
)}
|
||||
onClick={exampleThemeStorage.toggle}>
|
||||
{props.children}
|
||||
</button>
|
||||
);
|
||||
};
|
||||
|
||||
export default withErrorBoundary(withSuspense(Panel, <LoadingSpinner />), ErrorDisplay);
|
||||
1
pages/devtools-panel/src/index.css
Normal file
@@ -0,0 +1 @@
|
||||
@import '@extension/ui/global.css';
|
||||
15
pages/devtools-panel/src/index.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
import '@src/index.css';
|
||||
import Panel from '@src/Panel';
|
||||
import { createRoot } from 'react-dom/client';
|
||||
|
||||
const init = () => {
|
||||
const appContainer = document.querySelector('#app-container');
|
||||
if (!appContainer) {
|
||||
throw new Error('Can not find #app-container');
|
||||
}
|
||||
const root = createRoot(appContainer);
|
||||
|
||||
root.render(<Panel />);
|
||||
};
|
||||
|
||||
init();
|
||||
5
pages/devtools-panel/tailwind.config.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import { withUI } from '@extension/ui';
|
||||
|
||||
export default withUI({
|
||||
content: ['index.html', 'src/**/*.tsx'],
|
||||
});
|
||||
11
pages/devtools-panel/tsconfig.json
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"extends": "@extension/tsconfig/base",
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"@src/*": ["src/*"]
|
||||
},
|
||||
"types": ["chrome", "node"]
|
||||
},
|
||||
"include": ["src", "vite.config.mts", "tailwind.config.ts"]
|
||||
}
|
||||
17
pages/devtools-panel/vite.config.mts
Normal file
@@ -0,0 +1,17 @@
|
||||
import { resolve } from 'node:path';
|
||||
import { withPageConfig } from '@extension/vite-config';
|
||||
|
||||
const rootDir = resolve(import.meta.dirname);
|
||||
const srcDir = resolve(rootDir, 'src');
|
||||
|
||||
export default withPageConfig({
|
||||
resolve: {
|
||||
alias: {
|
||||
'@src': srcDir,
|
||||
},
|
||||
},
|
||||
publicDir: resolve(rootDir, 'public'),
|
||||
build: {
|
||||
outDir: resolve(rootDir, '..', '..', 'dist', 'devtools-panel'),
|
||||
},
|
||||
});
|
||||
11
pages/devtools/index.html
Normal file
@@ -0,0 +1,11 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<title>Devtools</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<script type="module" src="./src/index.ts"></script>
|
||||
</body>
|
||||
</html>
|
||||
29
pages/devtools/package.json
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"name": "@extension/devtools",
|
||||
"version": "0.5.0",
|
||||
"description": "chrome extension - devtools",
|
||||
"type": "module",
|
||||
"private": true,
|
||||
"sideEffects": true,
|
||||
"files": [
|
||||
"dist/**"
|
||||
],
|
||||
"scripts": {
|
||||
"clean:node_modules": "pnpx rimraf node_modules",
|
||||
"clean:turbo": "rimraf .turbo",
|
||||
"clean": "pnpm clean:turbo && pnpm clean:node_modules",
|
||||
"build": "vite build",
|
||||
"dev": "vite build --mode development",
|
||||
"lint": "eslint .",
|
||||
"lint:fix": "pnpm lint --fix",
|
||||
"format": "prettier . --write --ignore-path ../../.prettierignore",
|
||||
"type-check": "tsc --noEmit"
|
||||
},
|
||||
"dependencies": {
|
||||
"@extension/shared": "workspace:*"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@extension/tsconfig": "workspace:*",
|
||||
"@extension/vite-config": "workspace:*"
|
||||
}
|
||||
}
|
||||
7
pages/devtools/public/logo.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 841.9 595.3">
|
||||
<g fill="#61DAFB">
|
||||
<path d="M666.3 296.5c0-32.5-40.7-63.3-103.1-82.4 14.4-63.6 8-114.2-20.2-130.4-6.5-3.8-14.1-5.6-22.4-5.6v22.3c4.6 0 8.3.9 11.4 2.6 13.6 7.8 19.5 37.5 14.9 75.7-1.1 9.4-2.9 19.3-5.1 29.4-19.6-4.8-41-8.5-63.5-10.9-13.5-18.5-27.5-35.3-41.6-50 32.6-30.3 63.2-46.9 84-46.9V78c-27.5 0-63.5 19.6-99.9 53.6-36.4-33.8-72.4-53.2-99.9-53.2v22.3c20.7 0 51.4 16.5 84 46.6-14 14.7-28 31.4-41.3 49.9-22.6 2.4-44 6.1-63.6 11-2.3-10-4-19.7-5.2-29-4.7-38.2 1.1-67.9 14.6-75.8 3-1.8 6.9-2.6 11.5-2.6V78.5c-8.4 0-16 1.8-22.6 5.6-28.1 16.2-34.4 66.7-19.9 130.1-62.2 19.2-102.7 49.9-102.7 82.3 0 32.5 40.7 63.3 103.1 82.4-14.4 63.6-8 114.2 20.2 130.4 6.5 3.8 14.1 5.6 22.5 5.6 27.5 0 63.5-19.6 99.9-53.6 36.4 33.8 72.4 53.2 99.9 53.2 8.4 0 16-1.8 22.6-5.6 28.1-16.2 34.4-66.7 19.9-130.1 62-19.1 102.5-49.9 102.5-82.3zm-130.2-66.7c-3.7 12.9-8.3 26.2-13.5 39.5-4.1-8-8.4-16-13.1-24-4.6-8-9.5-15.8-14.4-23.4 14.2 2.1 27.9 4.7 41 7.9zm-45.8 106.5c-7.8 13.5-15.8 26.3-24.1 38.2-14.9 1.3-30 2-45.2 2-15.1 0-30.2-.7-45-1.9-8.3-11.9-16.4-24.6-24.2-38-7.6-13.1-14.5-26.4-20.8-39.8 6.2-13.4 13.2-26.8 20.7-39.9 7.8-13.5 15.8-26.3 24.1-38.2 14.9-1.3 30-2 45.2-2 15.1 0 30.2.7 45 1.9 8.3 11.9 16.4 24.6 24.2 38 7.6 13.1 14.5 26.4 20.8 39.8-6.3 13.4-13.2 26.8-20.7 39.9zm32.3-13c5.4 13.4 10 26.8 13.8 39.8-13.1 3.2-26.9 5.9-41.2 8 4.9-7.7 9.8-15.6 14.4-23.7 4.6-8 8.9-16.1 13-24.1zM421.2 430c-9.3-9.6-18.6-20.3-27.8-32 9 .4 18.2.7 27.5.7 9.4 0 18.7-.2 27.8-.7-9 11.7-18.3 22.4-27.5 32zm-74.4-58.9c-14.2-2.1-27.9-4.7-41-7.9 3.7-12.9 8.3-26.2 13.5-39.5 4.1 8 8.4 16 13.1 24 4.7 8 9.5 15.8 14.4 23.4zM420.7 163c9.3 9.6 18.6 20.3 27.8 32-9-.4-18.2-.7-27.5-.7-9.4 0-18.7.2-27.8.7 9-11.7 18.3-22.4 27.5-32zm-74 58.9c-4.9 7.7-9.8 15.6-14.4 23.7-4.6 8-8.9 16-13 24-5.4-13.4-10-26.8-13.8-39.8 13.1-3.1 26.9-5.8 41.2-7.9zm-90.5 125.2c-35.4-15.1-58.3-34.9-58.3-50.6 0-15.7 22.9-35.6 58.3-50.6 8.6-3.7 18-7 27.7-10.1 5.7 19.6 13.2 40 22.5 60.9-9.2 20.8-16.6 41.1-22.2 60.6-9.9-3.1-19.3-6.5-28-10.2zM310 490c-13.6-7.8-19.5-37.5-14.9-75.7 1.1-9.4 2.9-19.3 5.1-29.4 19.6 4.8 41 8.5 63.5 10.9 13.5 18.5 27.5 35.3 41.6 50-32.6 30.3-63.2 46.9-84 46.9-4.5-.1-8.3-1-11.3-2.7zm237.2-76.2c4.7 38.2-1.1 67.9-14.6 75.8-3 1.8-6.9 2.6-11.5 2.6-20.7 0-51.4-16.5-84-46.6 14-14.7 28-31.4 41.3-49.9 22.6-2.4 44-6.1 63.6-11 2.3 10.1 4.1 19.8 5.2 29.1zm38.5-66.7c-8.6 3.7-18 7-27.7 10.1-5.7-19.6-13.2-40-22.5-60.9 9.2-20.8 16.6-41.1 22.2-60.6 9.9 3.1 19.3 6.5 28.1 10.2 35.4 15.1 58.3 34.9 58.3 50.6-.1 15.7-23 35.6-58.4 50.6zM320.8 78.4z"/>
|
||||
<circle cx="420.9" cy="296.5" r="45.7"/>
|
||||
<path d="M520.5 78.1z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
6
pages/devtools/src/index.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
try {
|
||||
console.log("Edit 'pages/devtools/src/index.ts' and save to reload.");
|
||||
chrome.devtools.panels.create('Dev Tools', '/icon-34.png', '/devtools-panel/index.html');
|
||||
} catch (e) {
|
||||
console.error(e);
|
||||
}
|
||||
11
pages/devtools/tsconfig.json
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"extends": "@extension/tsconfig/base",
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"@src/*": ["src/*"]
|
||||
},
|
||||
"types": ["chrome", "node"]
|
||||
},
|
||||
"include": ["src", "vite.config.mts"]
|
||||
}
|
||||
17
pages/devtools/vite.config.mts
Normal file
@@ -0,0 +1,17 @@
|
||||
import { resolve } from 'node:path';
|
||||
import { withPageConfig } from '@extension/vite-config';
|
||||
|
||||
const rootDir = resolve(import.meta.dirname);
|
||||
const srcDir = resolve(rootDir, 'src');
|
||||
|
||||
export default withPageConfig({
|
||||
resolve: {
|
||||
alias: {
|
||||
'@src': srcDir,
|
||||
},
|
||||
},
|
||||
publicDir: resolve(rootDir, 'public'),
|
||||
build: {
|
||||
outDir: resolve(rootDir, '..', '..', 'dist', 'devtools'),
|
||||
},
|
||||
});
|
||||
12
pages/new-tab/index.html
Normal file
@@ -0,0 +1,12 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<title>New Tab</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="app-container"></div>
|
||||
<script type="module" src="./src/index.tsx"></script>
|
||||
</body>
|
||||
</html>
|
||||
40
pages/new-tab/package.json
Normal file
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"name": "@extension/new-tab",
|
||||
"version": "0.5.0",
|
||||
"description": "chrome extension - new tab",
|
||||
"type": "module",
|
||||
"private": true,
|
||||
"sideEffects": true,
|
||||
"files": [
|
||||
"dist/**"
|
||||
],
|
||||
"scripts": {
|
||||
"clean:node_modules": "pnpx rimraf node_modules",
|
||||
"clean:turbo": "rimraf .turbo",
|
||||
"clean": "pnpm clean:turbo && pnpm clean:node_modules",
|
||||
"build": "vite build",
|
||||
"dev": "vite build --mode development",
|
||||
"lint": "eslint .",
|
||||
"lint:fix": "pnpm lint --fix",
|
||||
"format": "prettier . --write --ignore-path ../../.prettierignore",
|
||||
"type-check": "tsc --noEmit"
|
||||
},
|
||||
"dependencies": {
|
||||
"@extension/i18n": "workspace:*",
|
||||
"@extension/shared": "workspace:*",
|
||||
"@extension/storage": "workspace:*",
|
||||
"@extension/ui": "workspace:*"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@extension/tailwindcss-config": "workspace:*",
|
||||
"@extension/tsconfig": "workspace:*",
|
||||
"@extension/vite-config": "workspace:*",
|
||||
"sass": "^1.89.0"
|
||||
},
|
||||
"postcss": {
|
||||
"plugins": {
|
||||
"tailwindcss": {},
|
||||
"autoprefixer": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
124
pages/new-tab/public/logo_horizontal.svg
Normal file
|
After Width: | Height: | Size: 58 KiB |
117
pages/new-tab/public/logo_horizontal_dark.svg
Normal file
|
After Width: | Height: | Size: 60 KiB |
22
pages/new-tab/src/NewTab.css
Normal file
@@ -0,0 +1,22 @@
|
||||
.App {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.App-logo {
|
||||
height: 40vmin;
|
||||
}
|
||||
|
||||
.App-header {
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: calc(10px + 2vmin);
|
||||
}
|
||||
|
||||
code {
|
||||
background: rgba(148, 163, 184, 0.5);
|
||||
border-radius: 0.25rem;
|
||||
padding: 0.2rem 0.5rem;
|
||||
}
|
||||
10
pages/new-tab/src/NewTab.scss
Normal file
@@ -0,0 +1,10 @@
|
||||
$myColor: red;
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
color: $myColor;
|
||||
}
|
||||
31
pages/new-tab/src/NewTab.tsx
Normal file
@@ -0,0 +1,31 @@
|
||||
import '@src/NewTab.css';
|
||||
import '@src/NewTab.scss';
|
||||
import { t } from '@extension/i18n';
|
||||
import { PROJECT_URL_OBJECT, useStorage, withErrorBoundary, withSuspense } from '@extension/shared';
|
||||
import { exampleThemeStorage } from '@extension/storage';
|
||||
import { cn, ErrorDisplay, LoadingSpinner, ToggleButton } from '@extension/ui';
|
||||
|
||||
const NewTab = () => {
|
||||
const { isLight } = useStorage(exampleThemeStorage);
|
||||
const logo = isLight ? 'new-tab/logo_horizontal.svg' : 'new-tab/logo_horizontal_dark.svg';
|
||||
|
||||
const goGithubSite = () => chrome.tabs.create(PROJECT_URL_OBJECT);
|
||||
|
||||
console.log(t('hello', 'World'));
|
||||
return (
|
||||
<div className={cn('App', isLight ? 'bg-slate-50' : 'bg-gray-800')}>
|
||||
<header className={cn('App-header', isLight ? 'text-gray-900' : 'text-gray-100')}>
|
||||
<button onClick={goGithubSite}>
|
||||
<img src={chrome.runtime.getURL(logo)} className="App-logo" alt="logo" />
|
||||
</button>
|
||||
<p>
|
||||
Edit <code>pages/new-tab/src/NewTab.tsx</code>
|
||||
</p>
|
||||
<h6>The color of this paragraph is defined using SASS.</h6>
|
||||
<ToggleButton onClick={exampleThemeStorage.toggle}>{t('toggleTheme')}</ToggleButton>
|
||||
</header>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default withErrorBoundary(withSuspense(NewTab, <LoadingSpinner />), ErrorDisplay);
|
||||
1
pages/new-tab/src/index.css
Normal file
@@ -0,0 +1 @@
|
||||
@import '@extension/ui/global.css';
|
||||
15
pages/new-tab/src/index.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
import '@src/index.css';
|
||||
import NewTab from '@src/NewTab';
|
||||
import { createRoot } from 'react-dom/client';
|
||||
|
||||
const init = () => {
|
||||
const appContainer = document.querySelector('#app-container');
|
||||
if (!appContainer) {
|
||||
throw new Error('Can not find #app-container');
|
||||
}
|
||||
const root = createRoot(appContainer);
|
||||
|
||||
root.render(<NewTab />);
|
||||
};
|
||||
|
||||
init();
|
||||
5
pages/new-tab/tailwind.config.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import { withUI } from '@extension/ui';
|
||||
|
||||
export default withUI({
|
||||
content: ['index.html', 'src/**/*.tsx'],
|
||||
});
|
||||
11
pages/new-tab/tsconfig.json
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"extends": "@extension/tsconfig/base",
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"@src/*": ["src/*"]
|
||||
},
|
||||
"types": ["chrome", "node"]
|
||||
},
|
||||
"include": ["src", "vite.config.mts", "tailwind.config.ts"]
|
||||
}
|
||||
17
pages/new-tab/vite.config.mts
Normal file
@@ -0,0 +1,17 @@
|
||||
import { resolve } from 'node:path';
|
||||
import { withPageConfig } from '@extension/vite-config';
|
||||
|
||||
const rootDir = resolve(import.meta.dirname);
|
||||
const srcDir = resolve(rootDir, 'src');
|
||||
|
||||
export default withPageConfig({
|
||||
resolve: {
|
||||
alias: {
|
||||
'@src': srcDir,
|
||||
},
|
||||
},
|
||||
publicDir: resolve(rootDir, 'public'),
|
||||
build: {
|
||||
outDir: resolve(rootDir, '..', '..', 'dist', 'new-tab'),
|
||||
},
|
||||
});
|
||||
12
pages/options/index.html
Normal file
@@ -0,0 +1,12 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<title>Options</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="app-container"></div>
|
||||
<script type="module" src="./src/index.tsx"></script>
|
||||
</body>
|
||||
</html>
|
||||
39
pages/options/package.json
Normal file
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"name": "@extension/options",
|
||||
"version": "0.5.0",
|
||||
"description": "chrome extension - options",
|
||||
"type": "module",
|
||||
"private": true,
|
||||
"sideEffects": true,
|
||||
"files": [
|
||||
"dist/**"
|
||||
],
|
||||
"scripts": {
|
||||
"clean:node_modules": "pnpx rimraf node_modules",
|
||||
"clean:turbo": "rimraf .turbo",
|
||||
"clean": "pnpm clean:turbo && pnpm clean:node_modules",
|
||||
"build": "vite build",
|
||||
"dev": "vite build --mode development",
|
||||
"lint": "eslint .",
|
||||
"lint:fix": "pnpm lint --fix",
|
||||
"format": "prettier . --write --ignore-path ../../.prettierignore",
|
||||
"type-check": "tsc --noEmit"
|
||||
},
|
||||
"dependencies": {
|
||||
"@extension/shared": "workspace:*",
|
||||
"@extension/storage": "workspace:*",
|
||||
"@extension/ui": "workspace:*",
|
||||
"@extension/i18n": "workspace:*"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@extension/tailwindcss-config": "workspace:*",
|
||||
"@extension/tsconfig": "workspace:*",
|
||||
"@extension/vite-config": "workspace:*"
|
||||
},
|
||||
"postcss": {
|
||||
"plugins": {
|
||||
"tailwindcss": {},
|
||||
"autoprefixer": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
124
pages/options/public/logo_horizontal.svg
Normal file
|
After Width: | Height: | Size: 58 KiB |
117
pages/options/public/logo_horizontal_dark.svg
Normal file
|
After Width: | Height: | Size: 60 KiB |
26
pages/options/src/Options.css
Normal file
@@ -0,0 +1,26 @@
|
||||
#app-container {
|
||||
text-align: center;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
.App-logo {
|
||||
height: 40vmin;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.App {
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
font-size: calc(10px + 2vmin);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
code {
|
||||
background: rgba(148, 163, 184, 0.5);
|
||||
border-radius: 0.25rem;
|
||||
padding: 0.2rem 0.5rem;
|
||||
}
|
||||
26
pages/options/src/Options.tsx
Normal file
@@ -0,0 +1,26 @@
|
||||
import '@src/Options.css';
|
||||
import { t } from '@extension/i18n';
|
||||
import { PROJECT_URL_OBJECT, useStorage, withErrorBoundary, withSuspense } from '@extension/shared';
|
||||
import { exampleThemeStorage } from '@extension/storage';
|
||||
import { cn, ErrorDisplay, LoadingSpinner, ToggleButton } from '@extension/ui';
|
||||
|
||||
const Options = () => {
|
||||
const { isLight } = useStorage(exampleThemeStorage);
|
||||
const logo = isLight ? 'options/logo_horizontal.svg' : 'options/logo_horizontal_dark.svg';
|
||||
|
||||
const goGithubSite = () => chrome.tabs.create(PROJECT_URL_OBJECT);
|
||||
|
||||
return (
|
||||
<div className={cn('App', isLight ? 'bg-slate-50 text-gray-900' : 'bg-gray-800 text-gray-100')}>
|
||||
<button onClick={goGithubSite}>
|
||||
<img src={chrome.runtime.getURL(logo)} className="App-logo" alt="logo" />
|
||||
</button>
|
||||
<p>
|
||||
Edit <code>pages/options/src/Options.tsx</code>
|
||||
</p>
|
||||
<ToggleButton onClick={exampleThemeStorage.toggle}>{t('toggleTheme')}</ToggleButton>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default withErrorBoundary(withSuspense(Options, <LoadingSpinner />), ErrorDisplay);
|
||||
1
pages/options/src/index.css
Normal file
@@ -0,0 +1 @@
|
||||
@import '@extension/ui/global.css';
|
||||
14
pages/options/src/index.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import '@src/index.css';
|
||||
import Options from '@src/Options';
|
||||
import { createRoot } from 'react-dom/client';
|
||||
|
||||
const init = () => {
|
||||
const appContainer = document.querySelector('#app-container');
|
||||
if (!appContainer) {
|
||||
throw new Error('Can not find #app-container');
|
||||
}
|
||||
const root = createRoot(appContainer);
|
||||
root.render(<Options />);
|
||||
};
|
||||
|
||||
init();
|
||||
5
pages/options/tailwind.config.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import { withUI } from '@extension/ui';
|
||||
|
||||
export default withUI({
|
||||
content: ['index.html', 'src/**/*.tsx'],
|
||||
});
|
||||
11
pages/options/tsconfig.json
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"extends": "@extension/tsconfig/base",
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"@src/*": ["src/*"]
|
||||
},
|
||||
"types": ["chrome", "node"]
|
||||
},
|
||||
"include": ["src", "vite.config.mts", "tailwind.config.ts"]
|
||||
}
|
||||
17
pages/options/vite.config.mts
Normal file
@@ -0,0 +1,17 @@
|
||||
import { resolve } from 'node:path';
|
||||
import { withPageConfig } from '@extension/vite-config';
|
||||
|
||||
const rootDir = resolve(import.meta.dirname);
|
||||
const srcDir = resolve(rootDir, 'src');
|
||||
|
||||
export default withPageConfig({
|
||||
resolve: {
|
||||
alias: {
|
||||
'@src': srcDir,
|
||||
},
|
||||
},
|
||||
publicDir: resolve(rootDir, 'public'),
|
||||
build: {
|
||||
outDir: resolve(rootDir, '..', '..', 'dist', 'options'),
|
||||
},
|
||||
});
|
||||
12
pages/popup/index.html
Normal file
@@ -0,0 +1,12 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<title>Popup</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="app-container"></div>
|
||||
<script type="module" src="./src/index.tsx"></script>
|
||||
</body>
|
||||
</html>
|
||||
39
pages/popup/package.json
Normal file
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"name": "@extension/popup",
|
||||
"version": "0.5.0",
|
||||
"description": "chrome extension - popup",
|
||||
"type": "module",
|
||||
"private": true,
|
||||
"sideEffects": true,
|
||||
"files": [
|
||||
"dist/**"
|
||||
],
|
||||
"scripts": {
|
||||
"clean:node_modules": "pnpx rimraf node_modules",
|
||||
"clean:turbo": "rimraf .turbo",
|
||||
"clean": "pnpm clean:turbo && pnpm clean:node_modules",
|
||||
"build": "vite build",
|
||||
"dev": "vite build --mode development",
|
||||
"lint": "eslint .",
|
||||
"lint:fix": "pnpm lint --fix",
|
||||
"format": "prettier . --write --ignore-path ../../.prettierignore",
|
||||
"type-check": "tsc --noEmit"
|
||||
},
|
||||
"dependencies": {
|
||||
"@extension/shared": "workspace:*",
|
||||
"@extension/storage": "workspace:*",
|
||||
"@extension/i18n": "workspace:*",
|
||||
"@extension/ui": "workspace:*"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@extension/tailwindcss-config": "workspace:*",
|
||||
"@extension/tsconfig": "workspace:*",
|
||||
"@extension/vite-config": "workspace:*"
|
||||
},
|
||||
"postcss": {
|
||||
"plugins": {
|
||||
"tailwindcss": {},
|
||||
"autoprefixer": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
124
pages/popup/public/logo_vertical.svg
Normal file
|
After Width: | Height: | Size: 58 KiB |
117
pages/popup/public/logo_vertical_dark.svg
Normal file
|
After Width: | Height: | Size: 60 KiB |
30
pages/popup/src/Popup.css
Normal file
@@ -0,0 +1,30 @@
|
||||
.App {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
text-align: center;
|
||||
height: 100%;
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
.App-logo {
|
||||
height: 50vmin;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.App-header {
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: flex-end;
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
|
||||
code {
|
||||
background: rgba(148, 163, 184, 0.5);
|
||||
border-radius: 0.25rem;
|
||||
padding: 0.2rem 0.5rem;
|
||||
}
|
||||
63
pages/popup/src/Popup.tsx
Normal file
@@ -0,0 +1,63 @@
|
||||
import '@src/Popup.css';
|
||||
import { t } from '@extension/i18n';
|
||||
import { PROJECT_URL_OBJECT, useStorage, withErrorBoundary, withSuspense } from '@extension/shared';
|
||||
import { exampleThemeStorage } from '@extension/storage';
|
||||
import { cn, ErrorDisplay, LoadingSpinner, ToggleButton } from '@extension/ui';
|
||||
|
||||
const notificationOptions = {
|
||||
type: 'basic',
|
||||
iconUrl: chrome.runtime.getURL('icon-34.png'),
|
||||
title: 'Injecting content script error',
|
||||
message: 'You cannot inject script here!',
|
||||
} as const;
|
||||
|
||||
const Popup = () => {
|
||||
const { isLight } = useStorage(exampleThemeStorage);
|
||||
const logo = isLight ? 'popup/logo_vertical.svg' : 'popup/logo_vertical_dark.svg';
|
||||
|
||||
const goGithubSite = () => chrome.tabs.create(PROJECT_URL_OBJECT);
|
||||
|
||||
const injectContentScript = async () => {
|
||||
const [tab] = await chrome.tabs.query({ currentWindow: true, active: true });
|
||||
|
||||
if (tab.url!.startsWith('about:') || tab.url!.startsWith('chrome:')) {
|
||||
chrome.notifications.create('inject-error', notificationOptions);
|
||||
}
|
||||
|
||||
await chrome.scripting
|
||||
.executeScript({
|
||||
target: { tabId: tab.id! },
|
||||
files: ['/content-runtime/example.iife.js', '/content-runtime/all.iife.js'],
|
||||
})
|
||||
.catch(err => {
|
||||
// Handling errors related to other paths
|
||||
if (err.message.includes('Cannot access a chrome:// URL')) {
|
||||
chrome.notifications.create('inject-error', notificationOptions);
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
return (
|
||||
<div className={cn('App', isLight ? 'bg-slate-50' : 'bg-gray-800')}>
|
||||
<header className={cn('App-header', isLight ? 'text-gray-900' : 'text-gray-100')}>
|
||||
<button onClick={goGithubSite}>
|
||||
<img src={chrome.runtime.getURL(logo)} className="App-logo" alt="logo" />
|
||||
</button>
|
||||
<p>
|
||||
Edit <code>pages/popup/src/Popup.tsx</code>
|
||||
</p>
|
||||
<button
|
||||
className={cn(
|
||||
'mt-4 rounded px-4 py-1 font-bold shadow hover:scale-105',
|
||||
isLight ? 'bg-blue-200 text-black' : 'bg-gray-700 text-white',
|
||||
)}
|
||||
onClick={injectContentScript}>
|
||||
{t('injectButton')}
|
||||
</button>
|
||||
<ToggleButton>{t('toggleTheme')}</ToggleButton>
|
||||
</header>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default withErrorBoundary(withSuspense(Popup, <LoadingSpinner />), ErrorDisplay);
|
||||
6
pages/popup/src/index.css
Normal file
@@ -0,0 +1,6 @@
|
||||
@import '@extension/ui/global.css';
|
||||
|
||||
body {
|
||||
width: 300px;
|
||||
height: 260px;
|
||||
}
|
||||
15
pages/popup/src/index.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
import '@src/index.css';
|
||||
import Popup from '@src/Popup';
|
||||
import { createRoot } from 'react-dom/client';
|
||||
|
||||
const init = () => {
|
||||
const appContainer = document.querySelector('#app-container');
|
||||
if (!appContainer) {
|
||||
throw new Error('Can not find #app-container');
|
||||
}
|
||||
const root = createRoot(appContainer);
|
||||
|
||||
root.render(<Popup />);
|
||||
};
|
||||
|
||||
init();
|
||||
5
pages/popup/tailwind.config.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import { withUI } from '@extension/ui';
|
||||
|
||||
export default withUI({
|
||||
content: ['index.html', 'src/**/*.tsx'],
|
||||
});
|
||||
11
pages/popup/tsconfig.json
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"extends": "@extension/tsconfig/base",
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"@src/*": ["src/*"]
|
||||
},
|
||||
"types": ["chrome", "node"]
|
||||
},
|
||||
"include": ["src", "vite.config.mts", "tailwind.config.ts"]
|
||||
}
|
||||
17
pages/popup/vite.config.mts
Normal file
@@ -0,0 +1,17 @@
|
||||
import { resolve } from 'node:path';
|
||||
import { withPageConfig } from '@extension/vite-config';
|
||||
|
||||
const rootDir = resolve(import.meta.dirname);
|
||||
const srcDir = resolve(rootDir, 'src');
|
||||
|
||||
export default withPageConfig({
|
||||
resolve: {
|
||||
alias: {
|
||||
'@src': srcDir,
|
||||
},
|
||||
},
|
||||
publicDir: resolve(rootDir, 'public'),
|
||||
build: {
|
||||
outDir: resolve(rootDir, '..', '..', 'dist', 'popup'),
|
||||
},
|
||||
});
|
||||
12
pages/side-panel/index.html
Normal file
@@ -0,0 +1,12 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<title>Side Panel</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="app-container"></div>
|
||||
<script type="module" src="./src/index.tsx"></script>
|
||||
</body>
|
||||
</html>
|
||||
39
pages/side-panel/package.json
Normal file
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"name": "@extension/sidepanel",
|
||||
"version": "0.5.0",
|
||||
"description": "chrome extension - side panel",
|
||||
"type": "module",
|
||||
"private": true,
|
||||
"sideEffects": true,
|
||||
"files": [
|
||||
"dist/**"
|
||||
],
|
||||
"scripts": {
|
||||
"clean:node_modules": "pnpx rimraf node_modules",
|
||||
"clean:turbo": "rimraf .turbo",
|
||||
"clean": "pnpm clean:turbo && pnpm clean:node_modules",
|
||||
"build": "vite build",
|
||||
"dev": "vite build --mode development",
|
||||
"lint": "eslint .",
|
||||
"lint:fix": "pnpm lint --fix",
|
||||
"format": "prettier . --write --ignore-path ../../.prettierignore",
|
||||
"type-check": "tsc --noEmit"
|
||||
},
|
||||
"dependencies": {
|
||||
"@extension/shared": "workspace:*",
|
||||
"@extension/storage": "workspace:*",
|
||||
"@extension/i18n": "workspace:*",
|
||||
"@extension/ui": "workspace:*"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@extension/tailwindcss-config": "workspace:*",
|
||||
"@extension/tsconfig": "workspace:*",
|
||||
"@extension/vite-config": "workspace:*"
|
||||
},
|
||||
"postcss": {
|
||||
"plugins": {
|
||||
"tailwindcss": {},
|
||||
"autoprefixer": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
124
pages/side-panel/public/logo_vertical.svg
Normal file
|
After Width: | Height: | Size: 58 KiB |
117
pages/side-panel/public/logo_vertical_dark.svg
Normal file
|
After Width: | Height: | Size: 60 KiB |
30
pages/side-panel/src/SidePanel.css
Normal file
@@ -0,0 +1,30 @@
|
||||
.App {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
text-align: center;
|
||||
height: 100%;
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
.App-logo {
|
||||
height: 50vmin;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.App-header {
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: calc(10px + 2vmin);
|
||||
}
|
||||
|
||||
code {
|
||||
background: rgba(148, 163, 184, 0.5);
|
||||
border-radius: 0.25rem;
|
||||
padding: 0.2rem 0.5rem;
|
||||
}
|
||||
28
pages/side-panel/src/SidePanel.tsx
Normal file
@@ -0,0 +1,28 @@
|
||||
import '@src/SidePanel.css';
|
||||
import { t } from '@extension/i18n';
|
||||
import { PROJECT_URL_OBJECT, useStorage, withErrorBoundary, withSuspense } from '@extension/shared';
|
||||
import { exampleThemeStorage } from '@extension/storage';
|
||||
import { cn, ErrorDisplay, LoadingSpinner, ToggleButton } from '@extension/ui';
|
||||
|
||||
const SidePanel = () => {
|
||||
const { isLight } = useStorage(exampleThemeStorage);
|
||||
const logo = isLight ? 'side-panel/logo_vertical.svg' : 'side-panel/logo_vertical_dark.svg';
|
||||
|
||||
const goGithubSite = () => chrome.tabs.create(PROJECT_URL_OBJECT);
|
||||
|
||||
return (
|
||||
<div className={cn('App', isLight ? 'bg-slate-50' : 'bg-gray-800')}>
|
||||
<header className={cn('App-header', isLight ? 'text-gray-900' : 'text-gray-100')}>
|
||||
<button onClick={goGithubSite}>
|
||||
<img src={chrome.runtime.getURL(logo)} className="App-logo" alt="logo" />
|
||||
</button>
|
||||
<p>
|
||||
Edit <code>pages/side-panel/src/SidePanel.tsx</code>
|
||||
</p>
|
||||
<ToggleButton onClick={exampleThemeStorage.toggle}>{t('toggleTheme')}</ToggleButton>
|
||||
</header>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default withErrorBoundary(withSuspense(SidePanel, <LoadingSpinner />), ErrorDisplay);
|
||||
1
pages/side-panel/src/index.css
Normal file
@@ -0,0 +1 @@
|
||||
@import '@extension/ui/global.css';
|
||||
14
pages/side-panel/src/index.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import '@src/index.css';
|
||||
import SidePanel from '@src/SidePanel';
|
||||
import { createRoot } from 'react-dom/client';
|
||||
|
||||
const init = () => {
|
||||
const appContainer = document.querySelector('#app-container');
|
||||
if (!appContainer) {
|
||||
throw new Error('Can not find #app-container');
|
||||
}
|
||||
const root = createRoot(appContainer);
|
||||
root.render(<SidePanel />);
|
||||
};
|
||||
|
||||
init();
|
||||
5
pages/side-panel/tailwind.config.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import { withUI } from '@extension/ui';
|
||||
|
||||
export default withUI({
|
||||
content: ['index.html', 'src/**/*.tsx'],
|
||||
});
|
||||
11
pages/side-panel/tsconfig.json
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"extends": "@extension/tsconfig/base",
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"@src/*": ["src/*"]
|
||||
},
|
||||
"types": ["chrome", "node"]
|
||||
},
|
||||
"include": ["src", "vite.config.mts", "tailwind.config.ts"]
|
||||
}
|
||||
17
pages/side-panel/vite.config.mts
Normal file
@@ -0,0 +1,17 @@
|
||||
import { resolve } from 'node:path';
|
||||
import { withPageConfig } from '@extension/vite-config';
|
||||
|
||||
const rootDir = resolve(import.meta.dirname);
|
||||
const srcDir = resolve(rootDir, 'src');
|
||||
|
||||
export default withPageConfig({
|
||||
resolve: {
|
||||
alias: {
|
||||
'@src': srcDir,
|
||||
},
|
||||
},
|
||||
publicDir: resolve(rootDir, 'public'),
|
||||
build: {
|
||||
outDir: resolve(rootDir, '..', '..', 'dist', 'side-panel'),
|
||||
},
|
||||
});
|
||||