Instagram 下載器

在Instagram頁面加入下載按鈕與開啟按鈕,透過這些按鈕可以下載或開啟大頭貼與貼文、限時動態、Highlight中的照片或影片

< 腳本Instagram 下載器的回應

評論:普通 - 腳本能使用,但有一些問題

§
發表於:2022-05-06

Stopped working on videos

ZhiYu_作者
§
發表於:2022-05-07

Could you provide more information? This script currently works well on my computer.

§
發表於:2022-05-09
編輯:2022-05-09

Stopped working on both of my 2 browsers, Edge and WF G3. Clicking open in new tab button and download button do nothing. Works fine on pictures but not on videos.

§
發表於:2022-05-14

Could you provide more information?

Sadly it's the same here, the script stopped downloading videos (latest Chrome with Windows 10).

I don't know if the following is related to the problem, but I see this error in the chrome error-console:

"[Report Only] This document requires 'TrustedHTML' assignment and no 'default' policy for 'TrustedHTML' has been defined."

Trusted Type expected, but String received
Your site tries to use a plain string in a DOM modification where a Trusted Type is expected. Requiring Trusted Types for DOM modifications helps to prevent cross-site scripting attacks.
To solve this, provide a Trusted Type to all the DOM modifications listed below. You can convert a string into a Trusted Type by:
defining a policy and using its corresponding createHTML, createScript or createScriptURL function.
defining a policy named default which will be automatically called.


function createCustomBtn(svg, iconColor, className, marginLeft) {
let newBtn = document.createElement("a");
newBtn.innerHTML = svg.replace('%color', iconColor); <------------- This row is marked by Chrome
newBtn.setAttribute("class", "custom-btn " + className);
newBtn.setAttribute("target", "_blank");
newBtn.setAttribute("style", "cursor: pointer;margin-left: " + marginLeft + ";margin-top: 8px;");
newBtn.onclick = onClickHandler;
if (attachLink) newBtn.onmouseenter = onMouseInHandler;
if (className.includes("newtab")) {
newBtn.setAttribute("title", "Open in new tab");
} else {
newBtn.setAttribute("title", "Download");
}
return newBtn;

ZhiYu_作者
§
發表於:2022-05-18

Sorry, I didn't have same issue. But I will track this issue.
Thanks for the feedback.

發表回覆

登入以回覆