mirror of
https://github.com/Anarios/return-youtube-dislike.git
synced 2026-09-12 10:22:10 +02:00
3657de9b2c
Harden Shorts controls, reaction state, and navigation; share voting logic with the extension; improve ratio-bar rendering; and add comprehensive Jest, Playwright, artifact, and live-browser regression coverage.
30 lines
1.1 KiB
JavaScript
30 lines
1.1 KiB
JavaScript
const version = require("./userscript-version.json");
|
|
|
|
module.exports = {
|
|
name: "Return YouTube Dislike",
|
|
namespace: "https://www.returnyoutubedislike.com/",
|
|
homepage: "https://www.returnyoutubedislike.com/",
|
|
version,
|
|
encoding: "utf-8",
|
|
description: "Return of the YouTube Dislike, Based off https://www.returnyoutubedislike.com/",
|
|
icon: "https://github.com/Anarios/return-youtube-dislike/raw/main/Icons/Return%20Youtube%20Dislike%20-%20Transparent.png",
|
|
author: "Anarios & JRWR",
|
|
match: ["*://*.youtube.com/*"],
|
|
exclude: ["*://music.youtube.com/*", "*://*.music.youtube.com/*"],
|
|
compatible: ["chrome", "firefox", "opera", "safari", "edge"],
|
|
downloadURL:
|
|
"https://github.com/Anarios/return-youtube-dislike/raw/main/Extensions/UserScript/Return%20Youtube%20Dislike.user.js",
|
|
updateURL:
|
|
"https://github.com/Anarios/return-youtube-dislike/raw/main/Extensions/UserScript/Return%20Youtube%20Dislike.user.js",
|
|
grants: [
|
|
"GM.getValue",
|
|
"GM.setValue",
|
|
"GM.deleteValue",
|
|
"GM_getValue",
|
|
"GM_setValue",
|
|
"GM_deleteValue",
|
|
"GM_addStyle",
|
|
],
|
|
runAt: "document-end",
|
|
};
|