AlwaysTrust: Add options for each popup (#2234)
Co-authored-by: V <vendicated@riseup.net>
This commit is contained in:
parent
04d5423b08
commit
55901ba35e
2 changed files with 28 additions and 5 deletions
|
@ -16,27 +16,46 @@
|
||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
import { definePluginSettings } from "@api/Settings";
|
||||||
import { Devs } from "@utils/constants";
|
import { Devs } from "@utils/constants";
|
||||||
import definePlugin from "@utils/types";
|
import definePlugin, { OptionType } from "@utils/types";
|
||||||
|
|
||||||
|
const settings = definePluginSettings({
|
||||||
|
domain: {
|
||||||
|
type: OptionType.BOOLEAN,
|
||||||
|
default: true,
|
||||||
|
description: "Remove the untrusted domain popup when opening links",
|
||||||
|
restartNeeded: true
|
||||||
|
},
|
||||||
|
file: {
|
||||||
|
type: OptionType.BOOLEAN,
|
||||||
|
default: true,
|
||||||
|
description: "Remove the 'Potentially Dangerous Download' popup when opening links",
|
||||||
|
restartNeeded: true
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
export default definePlugin({
|
export default definePlugin({
|
||||||
name: "AlwaysTrust",
|
name: "AlwaysTrust",
|
||||||
description: "Removes the annoying untrusted domain and suspicious file popup",
|
description: "Removes the annoying untrusted domain and suspicious file popup",
|
||||||
authors: [Devs.zt],
|
authors: [Devs.zt, Devs.Trwy],
|
||||||
patches: [
|
patches: [
|
||||||
{
|
{
|
||||||
find: ".displayName=\"MaskedLinkStore\"",
|
find: ".displayName=\"MaskedLinkStore\"",
|
||||||
replacement: {
|
replacement: {
|
||||||
match: /(?<=isTrustedDomain\(\i\){)return \i\(\i\)/,
|
match: /(?<=isTrustedDomain\(\i\){)return \i\(\i\)/,
|
||||||
replace: "return true"
|
replace: "return true"
|
||||||
}
|
},
|
||||||
|
predicate: () => settings.store.domain
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
find: "isSuspiciousDownload:",
|
find: "isSuspiciousDownload:",
|
||||||
replacement: {
|
replacement: {
|
||||||
match: /function \i\(\i\){(?=.{0,60}\.parse\(\i\))/,
|
match: /function \i\(\i\){(?=.{0,60}\.parse\(\i\))/,
|
||||||
replace: "$&return null;"
|
replace: "$&return null;"
|
||||||
}
|
},
|
||||||
|
predicate: () => settings.store.file
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
settings
|
||||||
});
|
});
|
||||||
|
|
|
@ -49,6 +49,10 @@ export const Devs = /* #__PURE__*/ Object.freeze({
|
||||||
name: "Cynosphere",
|
name: "Cynosphere",
|
||||||
id: 150745989836308480n
|
id: 150745989836308480n
|
||||||
},
|
},
|
||||||
|
Trwy: {
|
||||||
|
name: "trey",
|
||||||
|
id: 354427199023218689n
|
||||||
|
},
|
||||||
Megu: {
|
Megu: {
|
||||||
name: "Megumin",
|
name: "Megumin",
|
||||||
id: 545581357812678656n
|
id: 545581357812678656n
|
||||||
|
|
Loading…
Reference in a new issue