Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 813 Bytes

bypass_all_shortlink-js.md

File metadata and controls

9 lines (8 loc) · 813 Bytes
title date categories
Bypass_all_shortlink.Js
2023-11-23
useful-script-en

how to add bookmarklet in chrome
// https://greasyfork.org/en/scripts/431691-bypass-all-shortlinks/code function userScriptConfigToObject(config) { let a = config.split(“\n”); let b = { includes: [], exclude: [], match: [], }; a.forEach((_) => { let value = _.split(” “).at(-1); if (_.includes(“@include”)) { b.includes.push(value); } else if (_.includes(“@exclude”)) { b.exclude.push(value); } else if (_.includes(“@match”)) { b.match.push(value); } }); }