Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 1005 Bytes

envato_bypasspreview-js.md

File metadata and controls

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

how to add bookmarklet in chrome
export default { icon: “https://elements.envato.com/favicon.ico”, name: { en: “Envato – preview bypass”, vi: “Envato – bypass khung xem trước”, }, description: { en: “Remove preview iframe on Envato sites (Themeforest, Codecanyon)”, vi: “Bypass khung preview khi xem demo trong trang web Envato (Themeforest, Codecanyon)”, }, onClick: function () { // Source code: https://gist.github.com/J2TEAM/f79f950c31cc9fe4ed705515385ed75f let url = document.querySelector(“.full-screen-preview__frame”)?.src; if (url) window.open(url); else alert(“Không tìm thấy link để bypass preview Envato”); }, };