你正在訪問的內容是外部程式的映像位址,僅用於使用者加速訪問,本站無法保證其可靠性。當前的連結位址(單點即可複製)為 https://greasyfork.org.cn/zh-CN/scripts/476762-furaffinity-custom-pages,源站連結 點此以跳轉。
Helper Script to create Custom pages on Furaffinitiy
当前为
此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.greasyfork.org.cn/scripts/476762/1260198/Furaffinity-Custom-Pages.js
Helper Script to create Custom pages on Furaffinitiy
@require this scriptconst customPage = new FACustomPage("parameterName", "pageUrl");customPage.addEventListener("pageOpened", (event) => {
console.log(event.detail.parameterValue);
});event.detail is the CustomData classFACustomPage.checkCustomPagesOpened();The CustomPage class contains following Properties:
parameterName - The name of the parameter on which you want the event to executeurl - The url on which the parameter has to be to execute the eventIt supports the following Events:
pageOpened - Event has CustomData as detailsIt has following functions:
static checkCustomPagesOpened() - Checks if any created CustomPage is open and triggers their event for those which arepageOpened(parameterValue, openedPage) - Triggers the pageOpened event. Takes the current parameterValue and the openedPage HTML DocumentisPageOpened() - Returns a boolean wether the CustomPage is currently opengetPageParameterValue() - Returns the parameterValue if the CustomPage is opencheckPageOpened() - Checks if the CustomPage is open and triggers the event if it isThe CustomData class contains following Properties:
parameterValue - The parameterValue of the current openedPagedocument - The HTML Document of the current openedPageIt has following functions:
removeDocumentSiteContent() - Removes the default SiteContent of the openedPage document. Returns the document without SiteContent