Last active
January 26, 2023 09:40
-
-
Save wmakeev/169f0ef79aaea1ec4253ecdd089a3bcc to your computer and use it in GitHub Desktop.
[Redirect bookmarklet] #bookmarklet #redirect #url #queystring
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(() => { | |
// 1. Скопировать этот код на страницу https://caiorss.github.io/bookmarklet-maker/ | |
// 2. Заполнить название закладки | |
// 3. Сюда добвить ID вашей функции в Yandex.Cloud | |
const FUNCTION_ID = "qwertyyuio1234567890"; | |
// 4. Тут указать название закладки с фильтром в разделе "Заказы покупателей" | |
const FILTER_NAME = "Все"; | |
// 5. Нажать "Generate Bookmarklet" | |
// 6. Перетащить закладку на панель | |
const url = new URL(FUNCTION_ID, "https://functions.yandexcloud.net"); | |
url.searchParams.set("filter-type", "namedfilter"); | |
url.searchParams.set("filter-name", FILTER_NAME); | |
window.open(url, "_blank").focus(); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment