feat: add a browser extensions
BIN
extension/chrome/icon-16x16.png
Normal file
After Width: | Height: | Size: 875 B |
BIN
extension/chrome/icon-32x32.png
Normal file
After Width: | Height: | Size: 2.6 KiB |
BIN
extension/chrome/icon-48x48.png
Normal file
After Width: | Height: | Size: 5.2 KiB |
BIN
extension/chrome/icon-72x72.png
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
extension/chrome/icon-96x96.png
Normal file
After Width: | Height: | Size: 16 KiB |
30
extension/chrome/main.js
Normal file
|
@ -0,0 +1,30 @@
|
|||
// find a container and an open in app link with button
|
||||
const container = document.querySelector('div[style="text-align: center;"]');
|
||||
const openInAppLink = document.querySelector('a[href^="anixart"');
|
||||
const openInAppLinkButton = openInAppLink.querySelector("button");
|
||||
openInAppLinkButton.style = "margin-top: 0px !important;"; // disable default button margin
|
||||
openInAppLinkButton.classList = "btn btn-secondary"; // change default button from primary to secondary
|
||||
|
||||
// create a custom footer
|
||||
const footer = document.createElement("div");
|
||||
footer.style =
|
||||
"display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; align-items: center; margin-top: 20px;";
|
||||
|
||||
// create and set custom link
|
||||
const link = document.createElement("a");
|
||||
const button = document.createElement("button");
|
||||
button.style = "margin-top: 0px !important;";
|
||||
button.classList = "btn btn-primary";
|
||||
button.textContent = "Открыть в Anix";
|
||||
|
||||
const url = new URL(window.location.href);
|
||||
const pathname = url.pathname;
|
||||
link.href = `https://anix.wah.su${pathname}`;
|
||||
link.appendChild(button);
|
||||
|
||||
// append link and open in app link to footer
|
||||
footer.appendChild(link);
|
||||
footer.appendChild(openInAppLink);
|
||||
|
||||
// append footer to container
|
||||
container.appendChild(footer);
|
24
extension/chrome/manifest.json
Normal file
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"manifest_version": 3,
|
||||
"version": "1.0",
|
||||
"name": "Watch on Anix",
|
||||
"content_scripts": [
|
||||
{
|
||||
"matches": [
|
||||
"https://anixart.tv/release/*",
|
||||
"https://anixart.tv/collection/*",
|
||||
"https://anixart.tv/profile/*"
|
||||
],
|
||||
"js": [
|
||||
"main.js"
|
||||
]
|
||||
}
|
||||
],
|
||||
"icons": {
|
||||
"16": "icon-16x16.png",
|
||||
"32": "icon-32x32.png",
|
||||
"48": "icon-48x48.png",
|
||||
"72": "icon-72x72.png",
|
||||
"96": "icon-96x96.png"
|
||||
}
|
||||
}
|
BIN
extension/chrome/watch-on-anix-chrome.zip
Normal file
BIN
extension/firefox/icon-16x16.png
Normal file
After Width: | Height: | Size: 875 B |
BIN
extension/firefox/icon-32x32.png
Normal file
After Width: | Height: | Size: 2.6 KiB |
BIN
extension/firefox/icon-48x48.png
Normal file
After Width: | Height: | Size: 5.2 KiB |
BIN
extension/firefox/icon-72x72.png
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
extension/firefox/icon-96x96.png
Normal file
After Width: | Height: | Size: 16 KiB |
30
extension/firefox/main.js
Normal file
|
@ -0,0 +1,30 @@
|
|||
// find a container and an open in app link with button
|
||||
const container = document.querySelector('div[style="text-align: center;"]');
|
||||
const openInAppLink = document.querySelector('a[href^="anixart"');
|
||||
const openInAppLinkButton = openInAppLink.querySelector("button");
|
||||
openInAppLinkButton.style = "margin-top: 0px !important;"; // disable default button margin
|
||||
openInAppLinkButton.classList = "btn btn-secondary"; // change default button from primary to secondary
|
||||
|
||||
// create a custom footer
|
||||
const footer = document.createElement("div");
|
||||
footer.style =
|
||||
"display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; align-items: center; margin-top: 20px;";
|
||||
|
||||
// create and set custom link
|
||||
const link = document.createElement("a");
|
||||
const button = document.createElement("button");
|
||||
button.style = "margin-top: 0px !important;";
|
||||
button.classList = "btn btn-primary";
|
||||
button.textContent = "Открыть в Anix";
|
||||
|
||||
const url = new URL(window.location.href);
|
||||
const pathname = url.pathname;
|
||||
link.href = `https://anix.wah.su${pathname}`;
|
||||
link.appendChild(button);
|
||||
|
||||
// append link and open in app link to footer
|
||||
footer.appendChild(link);
|
||||
footer.appendChild(openInAppLink);
|
||||
|
||||
// append footer to container
|
||||
container.appendChild(footer);
|
30
extension/firefox/manifest.json
Normal file
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"manifest_version": 2,
|
||||
"version": "1.1",
|
||||
"name": "Watch on Anix",
|
||||
"description": "Adds a button to watch on Anix.",
|
||||
"browser_specific_settings": {
|
||||
"gecko": {
|
||||
"id": "{8c53d0c2-43ad-4498-b700-290bd2e1030f}"
|
||||
}
|
||||
},
|
||||
"content_scripts": [
|
||||
{
|
||||
"matches": [
|
||||
"https://anixart.tv/release/*",
|
||||
"https://anixart.tv/collection/*",
|
||||
"https://anixart.tv/profile/*"
|
||||
],
|
||||
"js": [
|
||||
"main.js"
|
||||
]
|
||||
}
|
||||
],
|
||||
"icons": {
|
||||
"16": "icon-16x16.png",
|
||||
"32": "icon-32x32.png",
|
||||
"48": "icon-48x48.png",
|
||||
"72": "icon-72x72.png",
|
||||
"96": "icon-96x96.png"
|
||||
}
|
||||
}
|