Skip to content

Commit d626a05

Browse files
committed
Initial commit
0 parents  commit d626a05

29 files changed

+3153
-0
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# animepahe-quick-downloader
2+

content-script/index.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
<link rel="icon" href="/favicon.ico" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1" />
7+
<link rel="manifest" href="/manifest.json" />
8+
<title>Chrome Extension Content Script</title>
9+
</head>
10+
<body>
11+
<noscript>You need to enable JavaScript to run this app.</noscript>
12+
<script type="module" src="./src/main.tsx"></script>
13+
</body>
14+
</html>

content-script/src/App.css

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
.App {
2+
text-align: center;
3+
}
4+
5+
.App-logo {
6+
width: unset;
7+
height: 40vmin;
8+
pointer-events: none;
9+
}
10+
11+
@media (prefers-reduced-motion: no-preference) {
12+
.App-logo {
13+
animation: App-logo-spin infinite 20s linear;
14+
}
15+
}
16+
17+
.App-header {
18+
background-color: #282c34;
19+
min-height: 100vh;
20+
display: flex;
21+
flex-direction: column;
22+
align-items: center;
23+
justify-content: center;
24+
font-size: calc(10px + 2vmin);
25+
color: white;
26+
}
27+
28+
.App-link {
29+
color: #61dafb;
30+
}
31+
32+
@keyframes App-logo-spin {
33+
from {
34+
transform: rotate(0deg);
35+
}
36+
to {
37+
transform: rotate(360deg);
38+
}
39+
}

content-script/src/App.tsx

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
/// <reference types="chrome" />
2+
/// <reference types="vite-plugin-svgr/client" />
3+
4+
import Logo from "./Logo";
5+
import "./App.css";
6+
import { useEffect } from "react";
7+
8+
function App() {
9+
useEffect(() => {
10+
// Function to extract links matching the specified pattern from script tags
11+
const extractLinksFromScripts = () => {
12+
const scripts = document.querySelectorAll<HTMLScriptElement>(
13+
'script[type="text/javascript"]'
14+
);
15+
const s = scripts[0].textContent || "";
16+
const a = s.split('"');
17+
const kwikLink = a.find((e) => e.startsWith("https://kwik"));
18+
console.log(kwikLink);
19+
if (kwikLink) {
20+
// Redirect to the extracted URL
21+
window.location.href = kwikLink;
22+
return; // Exit loop if a valid URL is found
23+
}
24+
};
25+
const currentUrl = window.location.href;
26+
if (currentUrl.startsWith("https://pahe.win")) {
27+
extractLinksFromScripts();
28+
}
29+
}, []);
30+
31+
useEffect(() => {
32+
// Function to simulate click on the download button
33+
const clickDownloadButton = () => {
34+
// Find the download button in the DOM
35+
const currentUrl = window.location.href;
36+
let a = currentUrl.split("/");
37+
const index = a.indexOf("f");
38+
a[index] = "d";
39+
const downloadUrl = a.join("/");
40+
41+
const downloadButton = document.querySelector<HTMLButtonElement>(
42+
`form[action="${downloadUrl}"] button[type="submit"]`
43+
);
44+
45+
// Simulate click on the button if found
46+
if (downloadButton) {
47+
downloadButton.click();
48+
} else {
49+
console.error("Download button not found in the DOM.");
50+
}
51+
};
52+
53+
// Check if the current URL matches the specific pattern
54+
const currentUrl = window.location.href;
55+
if (currentUrl.startsWith("https://kwik.si/")) {
56+
// Call the clickDownloadButton function only for specific URLs
57+
clickDownloadButton();
58+
}
59+
}, []); // Empty dependency array ensures this effect runs only once on mount
60+
61+
return (
62+
<div className="App">
63+
</div>
64+
);
65+
}
66+
67+
export default App;

content-script/src/Logo.tsx

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
/// <reference types="chrome" />
2+
/// <reference types="vite-plugin-svgr/client" />
3+
4+
type LogoProps = {
5+
className: string;
6+
id: string;
7+
title: string;
8+
};
9+
10+
function Logo({ className, id, title }: LogoProps) {
11+
return (
12+
<svg
13+
className={className}
14+
role="img"
15+
aria-describedby={id}
16+
xmlns="http://www.w3.org/2000/svg"
17+
viewBox="0 0 841.9 595.3"
18+
>
19+
<g fill="#61DAFB">
20+
<title id={id}>{title}</title>
21+
<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" />
22+
<circle cx="420.9" cy="296.5" r="45.7" />
23+
<path d="M520.5 78.1z" />
24+
</g>
25+
</svg>
26+
);
27+
}
28+
29+
export default Logo;

content-script/src/main.css

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
body {
2+
margin: 0;
3+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
4+
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
5+
sans-serif;
6+
-webkit-font-smoothing: antialiased;
7+
-moz-osx-font-smoothing: grayscale;
8+
}
9+
10+
code {
11+
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
12+
monospace;
13+
}

content-script/src/main.tsx

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
import React from "react";
2+
import { createRoot } from "react-dom/client";
3+
import "./main.css";
4+
import App from "./App";
5+
6+
const body = document.querySelector("body");
7+
8+
const app = document.createElement("div");
9+
10+
app.id = "root";
11+
12+
// Make sure the element that you want to mount the app to has loaded. You can
13+
// also use `append` or insert the app using another method:
14+
// https://developer.mozilla.org/en-US/docs/Web/API/Element#methods
15+
//
16+
// Also control when the content script is injected from the manifest.json:
17+
// https://developer.chrome.com/docs/extensions/mv3/content_scripts/#run_time
18+
if (body) {
19+
body.prepend(app);
20+
}
21+
22+
const container = document.getElementById("root");
23+
const root = createRoot(container!);
24+
25+
root.render(
26+
<React.StrictMode>
27+
<App />
28+
</React.StrictMode>
29+
);

content-script/src/reportWebVitals.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import { ReportHandler } from "web-vitals";
2+
3+
const reportWebVitals = (onPerfEntry: ReportHandler) => {
4+
if (onPerfEntry && onPerfEntry instanceof Function) {
5+
import("web-vitals").then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => {
6+
getCLS(onPerfEntry);
7+
getFID(onPerfEntry);
8+
getFCP(onPerfEntry);
9+
getLCP(onPerfEntry);
10+
getTTFB(onPerfEntry);
11+
});
12+
}
13+
};
14+
15+
export default reportWebVitals;

0 commit comments

Comments
 (0)