Files
return-youtube-dislike/Extensions/UserScript/userscript.meta.js
T
Anarios 3657de9b2c Fix Shorts support and add userscript voting
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.
2026-09-01 23:41:28 +02:00

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",
};