IG小助手

一键下载对方 Instagram 帖子中的相片、视频甚至是他们的快拍、Reels及头像图片!

  1. // ==UserScript==
  2. // @name IG Helper
  3. // @name:zh-TW IG小精靈
  4. // @name:zh-CN IG小助手
  5. // @name:ja IG助手
  6. // @name:ko IG조수
  7. // @namespace https://github.snkms.com/
  8. // @version 3.2.1
  9. // @description Downloading is possible for both photos and videos from posts, as well as for stories, reels or profile picture.
  10. // @description:zh-TW 一鍵下載對方 Instagram 貼文中的相片、影片甚至是他們的限時動態、連續短片及大頭貼圖片!
  11. // @description:zh-CN 一键下载对方 Instagram 帖子中的相片、视频甚至是他们的快拍、Reels及头像图片!
  12. // @description:ja 投稿の写真と動画だけでなく、ストーリー、リール、プロフィール写真もダウンロードできます。
  13. // @description:ko 게시물의 사진과 동영상뿐만 아니라 스토리, 릴 또는 프로필 사진도 다운로드할 수 있습니다.
  14. // @description:ro Descărcarea este posibilă atât pentru fotografiile și videoclipurile din postări, cât și pentru storyuri, reels sau poze de profil.
  15. // @author SN-Koarashi (5026)
  16. // @match https://*.instagram.com/*
  17. // @grant GM_info
  18. // @grant GM_addStyle
  19. // @grant GM_setValue
  20. // @grant GM_getValue
  21. // @grant GM_xmlhttpRequest
  22. // @grant GM_registerMenuCommand
  23. // @grant GM_unregisterMenuCommand
  24. // @grant GM_getResourceText
  25. // @grant GM_notification
  26. // @grant GM_openInTab
  27. // @connect i.instagram.com
  28. // @connect raw.githubusercontent.com
  29. // @require https://code.jquery.com/jquery-3.7.1.min.js#sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=
  30. // @resource INTERNAL_CSS https://raw.githubusercontent.com/SN-Koarashi/ig-helper/master/style.css
  31. // @resource LOCALE_MANIFEST https://raw.githubusercontent.com/SN-Koarashi/ig-helper/master/locale/manifest.json
  32. // @supportURL https://github.com/SN-Koarashi/ig-helper/
  33. // @contributionURL https://ko-fi.com/snkoarashi
  34. // @icon https://www.google.com/s2/favicons?domain=www.instagram.com&sz=32
  35. // @compatible firefox >= 100
  36. // @compatible chrome >= 100
  37. // @compatible edge >= 100
  38. // @license GPL-3.0-only
  39. // @run-at document-idle
  40. // ==/UserScript==
  41.  
  42. // eslint-disable-next-line no-unused-vars
  43. (function ($) {
  44. 'use strict';
  45.  
  46. /* initial */
  47.  
  48. /******** USER SETTINGS ********/
  49. // !!! DO NOT CHANGE THIS AREA !!!
  50. // ??? PLEASE CHANGE SETTING WITH MENU ???
  51. const USER_SETTING = {
  52. 'CHECK_UPDATE': true,
  53. 'AUTO_RENAME': true,
  54. 'RENAME_PUBLISH_DATE': true,
  55. 'DISABLE_VIDEO_LOOPING': false,
  56. 'HTML5_VIDEO_CONTROL': false,
  57. 'REDIRECT_CLICK_USER_STORY_PICTURE': false,
  58. 'FORCE_FETCH_ALL_RESOURCES': false,
  59. 'DIRECT_DOWNLOAD_VISIBLE_RESOURCE': false,
  60. 'DIRECT_DOWNLOAD_ALL': false,
  61. 'MODIFY_VIDEO_VOLUME': false,
  62. 'SCROLL_BUTTON': true,
  63. 'FORCE_RESOURCE_VIA_MEDIA': false,
  64. 'USE_BLOB_FETCH_WHEN_MEDIA_RATE_LIMIT': false,
  65. 'NEW_TAB_ALWAYS_FORCE_MEDIA_IN_POST': false,
  66. 'SKIP_VIEW_STORY_CONFIRM': false
  67. };
  68. const CHILD_NODES = ['RENAME_PUBLISH_DATE', 'USE_BLOB_FETCH_WHEN_MEDIA_RATE_LIMIT', 'NEW_TAB_ALWAYS_FORCE_MEDIA_IN_POST'];
  69. /*******************************/
  70.  
  71. // Icon download by Google Fonts Material Icon
  72. const SVG = {
  73. DOWNLOAD: '<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" height="24px" viewBox="0 0 24 24" width="24px" fill="#000000"><g><rect fill="none" height="24" width="24"/></g><g><path d="M18,15v3H6v-3H4v3c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-3H18z M17,11l-1.41-1.41L13,12.17V4h-2v8.17L8.41,9.59L7,11l5,5 L17,11z"/></g></svg>',
  74. NEW_TAB: '<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="#000000"><path d="M0 0h24v24H0V0z" fill="none"/><path d="M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z"/></svg>',
  75. THUMBNAIL: '<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="#000000"><path d="M0 0h24v24H0V0z" fill="none"/><path d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4.86 8.86l-3 3.87L9 13.14 6 17h12l-3.86-5.14z"/></svg>',
  76. DOWNLOAD_ALL: '<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" height="24px" viewBox="0 0 24 24" width="24px" fill="#000000"><g><rect fill="none" height="24" width="24"/></g><g><g><polygon points="18,6.41 16.59,5 12,9.58 7.41,5 6,6.41 12,12.41"/><polygon points="18,13 16.59,11.59 12,16.17 7.41,11.59 6,13 12,19"/></g></g></svg>',
  77. CLOSE: '<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="#000000"><path d="M0 0h24v24H0V0z" fill="none"/><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"/></svg>',
  78. FULLSCREEN: '<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="#000000"><path d="M0 0h24v24H0V0z" fill="none"/><path d="M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z"/></svg>'
  79. };
  80.  
  81. /*******************************/
  82. const checkInterval = 250;
  83. const style = GM_getResourceText("INTERNAL_CSS");
  84. const locale_manifest = JSON.parse(GM_getResourceText("LOCALE_MANIFEST"));
  85.  
  86. var state = {
  87. videoVolume: (GM_getValue('G_VIDEO_VOLUME')) ? GM_getValue('G_VIDEO_VOLUME') : 1,
  88. tempFetchRateLimit: false,
  89. fileRenameFormat: (GM_getValue('G_RENAME_FORMAT')) ? GM_getValue('G_RENAME_FORMAT') : '%USERNAME%-%SOURCE_TYPE%-%SHORTCODE%-%YEAR%%MONTH%%DAY%_%HOUR%%MINUTE%%SECOND%_%ORIGINAL_NAME_FIRST%',
  90. registerMenuIds: [],
  91. locale: {},
  92. lang: GM_getValue('lang') || navigator.language || navigator.userLanguage,
  93. currentURL: location.href,
  94. firstStarted: false,
  95. pageLoaded: false,
  96. GL_registerEventList: [],
  97. GL_logger: [],
  98. GL_referrer: null,
  99. GL_postPath: null,
  100. GL_username: null,
  101. GL_repeat: null,
  102. GL_dataCache: {
  103. stories: {},
  104. highlights: {}
  105. },
  106. GL_observer: new MutationObserver(function () {
  107. onReadyMyDW();
  108. })
  109. };
  110. /*******************************/
  111.  
  112. // initialization script
  113. initSettings();
  114. GM_addStyle(style);
  115. registerMenuCommand();
  116.  
  117. getTranslationText(state.lang).then((res) => {
  118. state.locale[state.lang] = res;
  119. repaintingTranslations();
  120. registerMenuCommand();
  121. checkingScriptUpdate(300);
  122. }).catch((err) => {
  123. registerMenuCommand();
  124. checkingScriptUpdate(300);
  125.  
  126. if (!state.lang.startsWith('en')) {
  127. console.error('getTranslationText catch error:', err);
  128. }
  129. });
  130.  
  131. logger('Script Loaded', GM_info.script.name, 'version:', GM_info.script.version);
  132. /*******************************/
  133.  
  134. // Main Timer
  135. // eslint-disable-next-line no-unused-vars
  136. var timer = setInterval(function () {
  137. // page loading or unnecessary route
  138. if ($('div#splash-screen').length > 0 && !$('div#splash-screen').is(':hidden') ||
  139. location.pathname.match(/^\/(explore(\/.*)?|challenge\/?.*|direct\/?.*|qr\/?|accounts\/.*|emails\/.*|language\/?.*?|your_activity\/?.*|settings\/help(\/.*)?$)$/ig) ||
  140. !location.hostname.startsWith('www.')
  141. ) {
  142. state.pageLoaded = false;
  143. return;
  144. }
  145.  
  146. if (state.currentURL != location.href || !state.firstStarted || !state.pageLoaded) {
  147. console.log('Main Timer', 'trigging');
  148.  
  149. clearInterval(state.GL_repeat);
  150. state.pageLoaded = false;
  151. state.firstStarted = true;
  152. state.currentURL = location.href;
  153. state.GL_observer.disconnect();
  154.  
  155. if (location.href.startsWith("https://www.instagram.com/p/") || location.pathname.match(/^\/(.*?)\/(p|reel)\//ig) || location.href.startsWith("https://www.instagram.com/reel/")) {
  156. state.GL_dataCache.stories = {};
  157. state.GL_dataCache.highlights = {};
  158.  
  159. logger('isDialog');
  160.  
  161. // This is a delayed function call that prevents the dialog element from appearing before the function is called.
  162. var dialogTimer = setInterval(() => {
  163. // body > div[id^="mount"] section nav + div > article << (mobile page in single post) >>
  164. // section:visible > main > div > div > div > div > div > hr << (single foreground post in page, non-floating // <hr> element here is literally the line beneath poster's username) >>
  165. // section:visible > main > div > div > article > div > div > div > div > div > header (is the same as above, except that this is on the route of the /{username}/p/{shortcode} structure)
  166. // section:visible > main > div > div.xdt5ytf << (former CSS selector for single foreground post in page, non-floating) >>
  167. // <hr> is much more unique element than "div.xdt5ytf"
  168. if ($(`body > div[class]:not([id^="mount"]) div div[role="dialog"] article,
  169. section:visible > main > div > div > div > div > div > hr,
  170. body > div[id^="mount"] section nav + div > article,
  171. section:visible > main > div > div > article > div > div > div > div > div > header
  172. `).length > 0) {
  173. clearInterval(dialogTimer);
  174.  
  175. // This is to prevent the detection of the "Modify Video Volume" setting from being too slow.
  176. setTimeout(() => {
  177. onReadyMyDW(false);
  178. }, 15);
  179. }
  180. }, 100);
  181.  
  182. state.pageLoaded = true;
  183. }
  184.  
  185. if (location.href.startsWith("https://www.instagram.com/reels/")) {
  186. logger('isReels');
  187. setTimeout(() => {
  188. onReels(false);
  189. }, 150);
  190. state.pageLoaded = true;
  191. }
  192.  
  193. if (location.href.split("?")[0] == "https://www.instagram.com/") {
  194. state.GL_dataCache.stories = {};
  195. state.GL_dataCache.highlights = {};
  196.  
  197. let hasReferrer = state.GL_referrer?.match(/^\/(stories|highlights)\//ig) != null;
  198.  
  199. logger('isHomepage', hasReferrer);
  200. setTimeout(() => {
  201. onReadyMyDW(false, hasReferrer);
  202.  
  203. const element = $('div[id^="mount"] > div > div div > section > main div:not([class]):not([style]) > div > article')?.parent()[0];
  204. if (element) {
  205. state.GL_observer.observe(element, {
  206. childList: true
  207. });
  208. }
  209. }, 150);
  210.  
  211. state.pageLoaded = true;
  212. }
  213. // eslint-disable-next-line no-useless-escape
  214. if ($('header > *[class]:first-child img[alt]').length && location.pathname.match(/^(\/)([0-9A-Za-z\.\-_]+)\/?(tagged|reels|saved)?\/?$/ig) && !location.pathname.match(/^(\/explore\/?$|\/stories(\/.*)?$|\/p\/)/ig)) {
  215. logger('isProfile');
  216. setTimeout(() => {
  217. onProfileAvatar(false);
  218. }, 150);
  219. state.pageLoaded = true;
  220. }
  221.  
  222. if (!state.pageLoaded) {
  223. // Call Instagram stories function
  224. if (location.href.match(/^(https:\/\/www\.instagram\.com\/stories\/highlights\/)/ig)) {
  225. state.GL_dataCache.highlights = {};
  226.  
  227. logger('isHighlightsStory');
  228.  
  229. onHighlightsStory(false);
  230. state.GL_repeat = setInterval(() => {
  231. onHighlightsStoryThumbnail(false);
  232. }, checkInterval);
  233.  
  234. if ($(".IG_DWHISTORY").length) {
  235. setTimeout(() => {
  236. if (USER_SETTING.SKIP_VIEW_STORY_CONFIRM) {
  237. var $viewStoryButton = $('div[id^="mount"] section:last-child > div > div div[role="button"]').filter(function () {
  238. return $(this).children().length === 0 && this.textContent.trim() !== "";
  239. });
  240. $viewStoryButton?.trigger("click");
  241. }
  242.  
  243. state.pageLoaded = true;
  244. }, 150);
  245. }
  246. }
  247. else if (location.href.match(/^(https:\/\/www\.instagram\.com\/stories\/)/ig)) {
  248. logger('isStory');
  249.  
  250. /*
  251. *
  252. * $('body div[id^="mount"] > div > div > div[class]').length >= 2 &&
  253. * $('body div[id^="mount"] > div > div > div[class]').last().find('svg > path[d^="M16.792"], svg > path[d^="M34.6 3.1c-4.5"]').length > 0 &&
  254. * $('body div[id^="mount"] > div > div > div[class]').last().find('svg > polyline + line').length > 0
  255. *
  256. */
  257. if ($('div[id^="mount"] section > div > a[href="/"]').length > 0) {
  258. $('.IG_DWSTORY').remove();
  259. $('.IG_DWNEWTAB').remove();
  260. if ($('.IG_DWSTORY_THUMBNAIL').length) {
  261. $('.IG_DWSTORY_THUMBNAIL').remove();
  262. }
  263.  
  264. onStory(false);
  265.  
  266. // Prevent buttons from being eaten by black holes sometimes
  267. setTimeout(() => {
  268. onStory(false);
  269. }, 150);
  270. }
  271.  
  272. if ($(".IG_DWSTORY").length) {
  273. setTimeout(() => {
  274. if (USER_SETTING.SKIP_VIEW_STORY_CONFIRM) {
  275. var $viewStoryButton = $('div[id^="mount"] section:last-child > div > div div[role="button"]').filter(function () {
  276. return $(this).children().length === 0 && this.textContent.trim() !== "";
  277. });
  278. $viewStoryButton?.click();
  279. }
  280.  
  281. state.pageLoaded = true;
  282. }, 150);
  283. }
  284. }
  285. else {
  286. state.pageLoaded = false;
  287. // Remove icons
  288. if ($('.IG_DWSTORY').length) {
  289. $('.IG_DWSTORY').remove();
  290. }
  291. if ($('.IG_DWSTORY_ALL').length) {
  292. $('.IG_DWSTORY_ALL').remove();
  293. }
  294. if ($('.IG_DWNEWTAB').length) {
  295. $('.IG_DWNEWTAB').remove();
  296. }
  297. if ($('.IG_DWSTORY_THUMBNAIL').length) {
  298. $('.IG_DWSTORY_THUMBNAIL').remove();
  299. }
  300.  
  301. if ($('.IG_DWHISTORY').length) {
  302. $('.IG_DWHISTORY').remove();
  303. }
  304. if ($('.IG_DWHISTORY_ALL').length) {
  305. $('.IG_DWHISTORY_ALL').remove();
  306. }
  307. if ($('.IG_DWHINEWTAB').length) {
  308. $('.IG_DWHINEWTAB').remove();
  309. }
  310. if ($('.IG_DWHISTORY_THUMBNAIL').length) {
  311. $('.IG_DWHISTORY_THUMBNAIL').remove();
  312. }
  313. }
  314. }
  315.  
  316. checkingScriptUpdate(300);
  317. state.GL_referrer = new URL(location.href).pathname;
  318. }
  319. }, checkInterval);
  320.  
  321. /* Main functions */
  322.  
  323. /**
  324. * onHighlightsStoryAll
  325. * @description Trigger user's highlight all download event.
  326. *
  327. * @return {void}
  328. */
  329. async function onHighlightsStoryAll() {
  330. updateLoadingBar(true);
  331.  
  332. let date = new Date().getTime();
  333. let timestamp = Math.floor(date / 1000);
  334. let highlightId = location.href.replace(/\/$/ig, '').split('/').at(-1);
  335. let highStories = await getHighlightStories(highlightId);
  336. let username = highStories.data.reels_media[0].owner.username;
  337.  
  338. let complete = 0;
  339. setDownloadProgress(complete, highStories.data.reels_media[0].items.length);
  340.  
  341. highStories.data.reels_media[0].items.forEach((item, idx) => {
  342. setTimeout(() => {
  343. if (USER_SETTING.RENAME_PUBLISH_DATE) {
  344. timestamp = item.taken_at_timestamp;
  345. }
  346.  
  347. item.display_resources.sort(function (a, b) {
  348. if (a.config_width < b.config_width) return 1;
  349. if (a.config_width > b.config_width) return -1;
  350. return 0;
  351. });
  352.  
  353. if (item.is_video) {
  354. saveFiles(item.video_resources[0].src, username, "stories", timestamp, 'mp4', item.id).then(() => {
  355. setDownloadProgress(++complete, highStories.data.reels_media[0].items.length);
  356. });
  357. }
  358. else {
  359. saveFiles(item.display_resources[0].src, username, "stories", timestamp, 'jpg', item.id).then(() => {
  360. setDownloadProgress(++complete, highStories.data.reels_media[0].items.length);
  361. });
  362. }
  363. }, 100 * idx);
  364. });
  365. }
  366.  
  367. /**
  368. * onHighlightsStory
  369. * @description Trigger user's highlight download event or button display event.
  370. *
  371. * @param {Boolean} isDownload - Check if it is a download operation
  372. * @param {Boolean} isPreview - Check if it is need to open new tab
  373. * @return {void}
  374. */
  375. async function onHighlightsStory(isDownload, isPreview) {
  376. var username = $('body > div section:visible a[href^="/"]').filter(function () {
  377. return $(this).attr('href').split('/').filter(e => e.length > 0).length === 1
  378. }).first().attr('href').split('/').filter(e => e.length > 0).at(0);
  379.  
  380. if (isDownload) {
  381. let date = new Date().getTime();
  382. let timestamp = Math.floor(date / 1000);
  383. let highlightId = location.href.replace(/\/$/ig, '').split('/').at(-1);
  384. let nowIndex = $("body > div section._ac0a header._ac0k > ._ac3r ._ac3n ._ac3p[style]").length ||
  385. $('body > div section:visible > div > div:not([class]) > div > div div.x1ned7t2.x78zum5 div.x1caxmr6').length ||
  386. $('body > div div:not([hidden]) section:visible > div div[style]:not([class]) > div').find('div div.x1ned7t2.x78zum5 div.x1caxmr6').length;
  387. let target = 0;
  388.  
  389. updateLoadingBar(true);
  390.  
  391. if (state.GL_dataCache.highlights[highlightId]) {
  392. logger('Fetch from memory cache:', highlightId);
  393.  
  394. let totIndex = state.GL_dataCache.highlights[highlightId].data.reels_media[0].items.length;
  395. username = state.GL_dataCache.highlights[highlightId].data.reels_media[0].owner.username;
  396. target = state.GL_dataCache.highlights[highlightId].data.reels_media[0].items[totIndex - nowIndex];
  397. }
  398. else {
  399. let highStories = await getHighlightStories(highlightId);
  400. let totIndex = highStories.data.reels_media[0].items.length;
  401. username = highStories.data.reels_media[0].owner.username;
  402. target = highStories.data.reels_media[0].items[totIndex - nowIndex];
  403.  
  404. state.GL_dataCache.highlights[highlightId] = highStories;
  405. }
  406.  
  407. logger('onHighlightsStory', highlightId, state.GL_dataCache.highlights[highlightId]);
  408.  
  409.  
  410. if (USER_SETTING.RENAME_PUBLISH_DATE) {
  411. timestamp = target.taken_at_timestamp;
  412. }
  413.  
  414. if (USER_SETTING.FORCE_RESOURCE_VIA_MEDIA && !state.tempFetchRateLimit) {
  415. let result = await getMediaInfo(target.id);
  416.  
  417. if (result.status === 'ok') {
  418. if (result.items[0].video_versions) {
  419. if (isPreview) {
  420. openNewTab(result.items[0].video_versions[0].url);
  421. }
  422. else {
  423. saveFiles(result.items[0].video_versions[0].url, username, "highlights", timestamp, 'mp4', result.items[0].id);
  424. }
  425. }
  426. else {
  427. if (isPreview) {
  428. openNewTab(result.items[0].image_versions2.candidates[0].url);
  429. }
  430. else {
  431. saveFiles(result.items[0].image_versions2.candidates[0].url, username, "highlights", timestamp, 'jpg', result.items[0].id);
  432. }
  433. }
  434. }
  435. else {
  436. if (USER_SETTING.USE_BLOB_FETCH_WHEN_MEDIA_RATE_LIMIT) {
  437. delete state.GL_dataCache.highlights[highlightId];
  438. state.tempFetchRateLimit = true;
  439.  
  440. onHighlightsStory(true, isPreview);
  441. }
  442. else {
  443. alert('Fetch failed from Media API. API response message: ' + result.message);
  444. }
  445.  
  446. logger(result);
  447. }
  448. }
  449. else {
  450. if (target.is_video) {
  451. if (isPreview) {
  452. openNewTab(target.video_resources.at(-1).src, username);
  453. }
  454. else {
  455. saveFiles(target.video_resources.at(-1).src, username, "highlights", timestamp, 'mp4', target.id);
  456. }
  457. }
  458. else {
  459. if (isPreview) {
  460. openNewTab(target.display_resources.at(-1).src, username);
  461. }
  462. else {
  463. saveFiles(target.display_resources.at(-1).src, username, "highlights", timestamp, 'jpg', target.id);
  464. }
  465. }
  466.  
  467. state.tempFetchRateLimit = false;
  468. }
  469.  
  470. updateLoadingBar(false);
  471. }
  472. else {
  473. // Add the stories download button
  474. if (!$('.IG_DWHISTORY').length) {
  475. let $element = null;
  476.  
  477. // Default detecter (section layout mode)
  478. if ($('body > div section._ac0a').length > 0) {
  479. $element = $('body > div section:visible._ac0a');
  480. }
  481. else {
  482. $element = $('body > div section:visible > div > div[style]:not([class])');
  483. $element.css('position', 'relative');
  484. }
  485.  
  486. // Detecter for div layout mode
  487. if ($element.length === 0) {
  488. let $$element = $('body > div div:not([hidden]) section:visible > div div[class][style] > div[style]:not([class])');
  489. let nowSize = 0;
  490.  
  491. $$element.each(function () {
  492. if ($(this).width() > nowSize) {
  493. nowSize = $(this).width();
  494. $element = $(this).children('div').first();
  495. }
  496. });
  497. }
  498.  
  499.  
  500. if ($element != null) {
  501. //$element.css('position','relative');
  502. $element.append(`<div data-ih-locale-title="DW" title="${_i18n("DW")}" class="IG_DWHISTORY">${SVG.DOWNLOAD}</div>`);
  503. $element.append(`<div data-ih-locale-title="NEW_TAB" title="${_i18n("NEW_TAB")}" class="IG_DWHINEWTAB">${SVG.NEW_TAB}</div>`);
  504.  
  505. let $header = getStoryProgress(username);
  506. if ($header.length > 1) {
  507. $element.append(`<div data-ih-locale-title="DW_ALL" title="${_i18n("DW_ALL")}" class="IG_DWHISTORY_ALL">${SVG.DOWNLOAD_ALL}</div>`);
  508. }
  509.  
  510. // replace something times ago format to publish time in first init
  511. let publishTitle = $header.parents("div[class]").find("time[datetime]")?.attr('title');
  512. if (publishTitle != null) {
  513. $header.parents("div[class]").find("time[datetime]").text(publishTitle);
  514. }
  515.  
  516. //// Modify video volume
  517. //if(USER_SETTING.MODIFY_VIDEO_VOLUME){
  518. // $element.find('video').each(function(){
  519. // $(this).on('play playing', function(){
  520. // if(!$(this).data('modify')){
  521. // $(this).attr('data-modify', true);
  522. // this.volume = VIDEO_VOLUME;
  523. // logger('(highlight) Added video event listener #modify');
  524. // }
  525. // });
  526. // });
  527. //}
  528.  
  529. // Make sure to first remove thumbnail button if still exists and highlight is a picture
  530. $element.find('img[referrerpolicy]').each(function () {
  531. $(this).on('load', function () {
  532. if (!$(this).data('remove-thumbnail')) {
  533. if ($element.find('.IG_DWHISTORY_THUMBNAIL').length === 0) {
  534. $(this).attr('data-remove-thumbnail', true);
  535. $('.IG_DWHISTORY_THUMBNAIL').remove();
  536. logger('(highlight) Manually removing thumbnail button');
  537. }
  538. else {
  539. $(this).attr('data-remove-thumbnail', true);
  540. logger('(highlight) Thumbnail button is not present for this picture');
  541. }
  542. }
  543. });
  544. });
  545.  
  546. // Try to use event listener 'timeupdate' in order to detect if highlight is a video
  547. //$element.find('video').each(function(){
  548. // $(this).on('timeupdate',function(){
  549. // if(!$(this).data('modify-thumbnail')){
  550. // if($element.find('.IG_DWHISTORY_THUMBNAIL').length === 0){
  551. // $(this).attr('data-modify-thumbnail', true);
  552. // onHighlightsStoryThumbnail(false);
  553. // logger('(highlight) Manually inserting thumbnail button');
  554. // }
  555. // else{
  556. // $(this).attr('data-modify-thumbnail', true);
  557. // logger('(highlight) Thumbnail button already inserted');
  558. // }
  559. // }
  560. // });
  561. //});
  562. }
  563. }
  564. }
  565. }
  566.  
  567. /**
  568. * onHighlightsStoryThumbnail
  569. * @description Trigger user's highlight video thumbnail download event or button display event.
  570. *
  571. * @param {Boolean} isDownload - Check if it is a download operation
  572. * @return {void}
  573. */
  574. async function onHighlightsStoryThumbnail(isDownload) {
  575. if (isDownload) {
  576. let date = new Date().getTime();
  577. let timestamp = Math.floor(date / 1000);
  578. let highlightId = location.href.replace(/\/$/ig, '').split('/').at(-1);
  579. let username = "";
  580. let nowIndex = $("body > div section._ac0a header._ac0k > ._ac3r ._ac3n ._ac3p[style]").length ||
  581. $('body > div section:visible > div > div:not([class]) > div > div div.x1ned7t2.x78zum5 div.x1caxmr6').length ||
  582. $('body > div div:not([hidden]) section:visible > div div[style]:not([class]) > div').find('div div.x1ned7t2.x78zum5 div.x1caxmr6').length;
  583. let target = "";
  584.  
  585. updateLoadingBar(true);
  586.  
  587. if (state.GL_dataCache.highlights[highlightId]) {
  588. logger('Fetch from memory cache:', highlightId);
  589.  
  590. let totIndex = state.GL_dataCache.highlights[highlightId].data.reels_media[0].items.length;
  591. username = state.GL_dataCache.highlights[highlightId].data.reels_media[0].owner.username;
  592. target = state.GL_dataCache.highlights[highlightId].data.reels_media[0].items[totIndex - nowIndex];
  593. }
  594. else {
  595. let highStories = await getHighlightStories(highlightId);
  596. let totIndex = highStories.data.reels_media[0].items.length;
  597. username = highStories.data.reels_media[0].owner.username;
  598. target = highStories.data.reels_media[0].items[totIndex - nowIndex];
  599.  
  600. state.GL_dataCache.highlights[highlightId] = highStories;
  601. }
  602.  
  603. if (USER_SETTING.RENAME_PUBLISH_DATE) {
  604. timestamp = target.taken_at_timestamp;
  605. }
  606.  
  607. if (USER_SETTING.FORCE_RESOURCE_VIA_MEDIA && !state.tempFetchRateLimit) {
  608. let result = await getMediaInfo(target.id);
  609.  
  610. if (result.status === 'ok') {
  611. saveFiles(result.items[0].image_versions2.candidates[0].url, username, "highlights", timestamp, 'jpg', highlightId);
  612. }
  613. else {
  614. if (USER_SETTING.USE_BLOB_FETCH_WHEN_MEDIA_RATE_LIMIT) {
  615. delete state.GL_dataCache.highlights[highlightId];
  616. state.tempFetchRateLimit = true;
  617.  
  618. onHighlightsStoryThumbnail(true);
  619. }
  620. else {
  621. alert('Fetch failed from Media API. API response message: ' + result.message);
  622. }
  623.  
  624. logger(result);
  625. }
  626. }
  627. else {
  628. saveFiles(target.display_resources.at(-1).src, username, "highlights", timestamp, 'jpg', highlightId);
  629. state.tempFetchRateLimit = false;
  630. }
  631.  
  632. updateLoadingBar(false);
  633. }
  634. else {
  635. if ($('body > div section video.xh8yej3').length) {
  636. // Add the stories thumbnail download button
  637. if (!$('.IG_DWHISTORY_THUMBNAIL').length) {
  638. let $element = null;
  639.  
  640. // Default detecter (section layout mode)
  641. if ($('body > div section._ac0a').length > 0) {
  642. $element = $('body > div section:visible._ac0a');
  643. }
  644. else {
  645. $element = $('body > div section:visible > div > div[style]:not([class])');
  646. $element.css('position', 'relative');
  647. }
  648.  
  649. // Detecter for div layout mode
  650. if ($element.length === 0) {
  651. let $$element = $('body > div div:not([hidden]) section:visible > div div[class][style] > div[style]:not([class])');
  652. let nowSize = 0;
  653.  
  654. $$element.each(function () {
  655. if ($(this).width() > nowSize) {
  656. nowSize = $(this).width();
  657. $element = $(this).children('div').first();
  658. }
  659. });
  660. }
  661.  
  662. if ($element != null) {
  663. $element.append(`<div data-ih-locale-title="THUMBNAIL_INTRO" title="${_i18n("THUMBNAIL_INTRO")}" class="IG_DWHISTORY_THUMBNAIL">${SVG.THUMBNAIL}</div>`);
  664. }
  665. }
  666. }
  667. else {
  668. $('.IG_DWHISTORY_THUMBNAIL').remove();
  669. }
  670. }
  671. }
  672.  
  673. /**
  674. * onReadyMyDW
  675. * @description Create an event entry point for the download button for the post
  676. *
  677. * @param {Boolean} NoDialog - Check if it not showing the dialog
  678. * @param {?Boolean} hasReferrer - Check if the source of the previous page is a story page
  679. * @return {void}
  680. */
  681. function onReadyMyDW(NoDialog, hasReferrer) {
  682. if (hasReferrer === true) {
  683. logger('hasReferrer', 'regenerated');
  684. $('article[data-snig="canDownload"], div[data-snig="canDownload"]').filter(function () {
  685. return $(this).find('.IG_DW_MAIN').length === 0
  686. }).removeAttr('data-snig');
  687. }
  688.  
  689. // Whether is Instagram dialog?
  690. if (NoDialog == false) {
  691. const maxCall = 100;
  692. let i = 0;
  693. var repeat = setInterval(() => {
  694. // section:visible > main > div > div[data-snig="canDownload"] > div > div > div > hr << (single foreground post in page, non-floating // <hr> element here is literally the line beneath poster's username) >>
  695. // section:visible > main > div > div.xdt5ytf[data-snig="canDownload"] << (former CSS selector for single foreground post in page, non-floating) >>
  696. // <hr> is much more unique element than "div.xdt5ytf"
  697. if (i > maxCall || $('article[data-snig="canDownload"], section:visible > main > div > div[data-snig="canDownload"] > div > div > div > hr, div[id^="mount"] > div > div > div.x1n2onr6.x1vjfegm div[data-snig="canDownload"]').length > 0) {
  698. clearInterval(repeat);
  699.  
  700. if (i > maxCall) {
  701. //alert('Trying to call button creation method reached to maximum try times. If you want to re-register method, please open script menu and press "Reload Script" button or hotkey "R" to reload main timer.');
  702. console.warn('onReadyMyDW() Timer', 'maximum number of repetitions reached, terminated');
  703. }
  704. }
  705.  
  706. logger('onReadyMyDW() Timer', 'repeating to call detection createDownloadButton()');
  707. createDownloadButton();
  708. i++;
  709. }, 50);
  710. }
  711. else {
  712. createDownloadButton();
  713. }
  714. }
  715.  
  716.  
  717. /**
  718. * initPostVideoFunction
  719. * @description Initialize settings related to the video resources in the post
  720. *
  721. * @param {Object} $mainElement
  722. * @return {Void}
  723. */
  724. function initPostVideoFunction($mainElement) {
  725. // Disable video autoplay
  726. if (USER_SETTING.DISABLE_VIDEO_LOOPING) {
  727. $mainElement.find('video').each(function () {
  728. $(this).on('ended', function () {
  729. if (!$(this).data('loop')) {
  730. $(this).attr('data-loop', true);
  731. this.pause();
  732. logger('(post) Added video event listener #loop');
  733. }
  734. });
  735. });
  736. }
  737.  
  738. // Modify video volume
  739. if (USER_SETTING.MODIFY_VIDEO_VOLUME) {
  740. $mainElement.find('video').each(function () {
  741. $(this).on('play playing', function () {
  742. if (!$(this).data('modify')) {
  743. $(this).attr('data-modify', true);
  744. this.volume = state.videoVolume;
  745. logger('(post) Added video event listener #modify');
  746. }
  747. });
  748. });
  749. }
  750.  
  751. if (USER_SETTING.HTML5_VIDEO_CONTROL) {
  752. $mainElement.find('video').each(function () {
  753. if (!$(this).data('controls')) {
  754. let $video = $(this);
  755.  
  756. logger('(post) Added video html5 contorller #modify');
  757.  
  758. if (USER_SETTING.MODIFY_VIDEO_VOLUME) {
  759. this.volume = state.videoVolume;
  760.  
  761. $(this).on('loadstart', function () {
  762. this.volume = state.videoVolume;
  763. });
  764. }
  765.  
  766. // Restore layout to show details interface
  767. $(this).on('contextmenu', function (e) {
  768. e.preventDefault();
  769. $video.css('z-index', '-1');
  770. $video.removeAttr('controls');
  771. });
  772.  
  773. // Hide layout to show controller
  774. $(this).parent().find('video + div > div').first().on('contextmenu', function (e) {
  775. e.preventDefault();
  776. $video.css('z-index', '2');
  777. $video.attr('controls', true);
  778. });
  779.  
  780. $(this).on('volumechange', function () {
  781. // eslint-disable-next-line no-unused-vars
  782. let $element_mute_button = $(this).parent().find('video + div > div').find('button[type="button"], div[role="button"]').filter(function (idx) {
  783. // This is mute/unmute's icon
  784. return $(this).width() <= 64 && $(this).height() <= 64 && $(this).find('svg > path[d^="M16.636 7.028a1.5"], svg > path[d^="M1.5 13.3c-.8"]').length > 0;
  785. });
  786.  
  787. var is_elelment_muted = $element_mute_button.find('svg > path[d^="M16.636"]').length === 0;
  788.  
  789. if (this.muted != is_elelment_muted) {
  790. this.volume = state.videoVolume;
  791. $element_mute_button?.trigger("click");
  792. }
  793.  
  794. if ($(this).attr('data-completed')) {
  795. state.videoVolume = this.volume;
  796. GM_setValue('G_VIDEO_VOLUME', this.volume);
  797. }
  798.  
  799. if (this.volume == state.videoVolume) {
  800. $(this).attr('data-completed', true);
  801. }
  802. });
  803.  
  804. $(this).css('position', 'absolute');
  805. $(this).css('z-index', '2');
  806. $(this).attr('data-controls', true);
  807. $(this).attr('controls', true);
  808. }
  809. });
  810. }
  811.  
  812. var $videos = $mainElement.find('video');
  813. var $buttonParent = $mainElement.find('video + div > div').first();
  814. toggleVolumeSilder($videos, $buttonParent, 'post', 'bottom');
  815. };
  816.  
  817. /**
  818. * createDownloadButton
  819. * @description Create a download button in the upper right corner of each post
  820. *
  821. * @return {void}
  822. */
  823. function createDownloadButton() {
  824. // Add download icon per each posts
  825. // eslint-disable-next-line no-unused-vars
  826. $('article, section:visible > main > div > div > div > div > div > hr').map(function (index) {
  827. return $(this).is('section:visible > main > div > div > div > div > div > hr') ? $(this).parent().parent().parent().parent()[0] : this;
  828. }).filter(function () {
  829. return $(this).height() > 0 && $(this).width() > 0
  830. })
  831. .each(function (index) {
  832. // If it is have not download icon
  833. // class x1iyjqo2 mean user profile pages post list container
  834. if (!$(this).attr('data-snig') && !$(this).hasClass('x1iyjqo2') && !$(this).children('article')?.hasClass('x1iyjqo2') && $(this).parents('div#scrollview').length === 0) {
  835. logger("Found post container", $(this));
  836.  
  837. const $mainElement = $(this);
  838. const tagName = this.tagName;
  839. const resourceCountSelector = '._acay ._acaz';
  840. var displayResourceURL;
  841.  
  842. // not loop each in single top post
  843. if (tagName === "DIV" && index != 0) {
  844. return;
  845. }
  846.  
  847. const $childElement = $mainElement.children("div").children("div");
  848.  
  849. if ($childElement.length === 0) return;
  850.  
  851. logger("Found insert point", $childElement);
  852.  
  853. // Modify carousel post counter's position to not interfere with our buttons
  854. if ($mainElement.find('._acay').length > 0) {
  855. if ($mainElement.find('._acay + .x24i39r').length > 0) {
  856. $mainElement.find('._acay + .x24i39r').css('top', '37px');
  857. }
  858.  
  859. const observeNode = $mainElement.find('._acay').first().parent()[0];
  860. var observer = new MutationObserver(function () {
  861. $mainElement.find('._acay + .x24i39r').css('top', '37px');
  862. });
  863.  
  864. observer.observe(observeNode, {
  865. childList: true
  866. });
  867. }
  868.  
  869. $childElement.eq((tagName === "DIV") ? 0 : $childElement.length - 2).append(`<div class="button_wrapper">`);
  870.  
  871. // Add icons
  872. const DownloadElement = `<div data-ih-locale-title="DW" title="${_i18n("DW")}" class="IG_DW_MAIN">${SVG.DOWNLOAD}</div>`;
  873. const NewTabElement = `<div data-ih-locale-title="NEW_TAB" title="${_i18n("NEW_TAB")}" class="IG_NEWTAB_MAIN">${SVG.NEW_TAB}</div>`;
  874. const ThumbnailElement = `<div data-ih-locale-title="THUMBNAIL_INTRO" title="${_i18n("THUMBNAIL_INTRO")}" class="IG_THUMBNAIL_MAIN">${SVG.THUMBNAIL}</div>`;
  875. const ViewerElement = `<div data-ih-locale-title="IMAGE_VIEWER" title="${_i18n("IMAGE_VIEWER")}" class="IG_IMAGE_VIEWER">${SVG.FULLSCREEN}</div>`;
  876.  
  877. $childElement.find(".button_wrapper").append(DownloadElement);
  878.  
  879. const resource_count = $mainElement.find(resourceCountSelector).length;
  880.  
  881. if (resource_count > 1 && USER_SETTING.DIRECT_DOWNLOAD_VISIBLE_RESOURCE && !USER_SETTING.DIRECT_DOWNLOAD_ALL) {
  882. const DownloadAllElement = `<div data-ih-locale-title="DW_ALL" title="${_i18n("DW_ALL")}" class="IG_DW_ALL_MAIN">${SVG.DOWNLOAD_ALL}</div>`;
  883. $childElement.find(".button_wrapper").append(DownloadAllElement);
  884. }
  885.  
  886. $childElement.find(".button_wrapper").append(NewTabElement);
  887.  
  888. setTimeout(() => {
  889. // Check if visible post is video
  890. if ($childElement.eq((tagName === "DIV") ? 0 : $childElement.length - 2).find('div > ul li._acaz').length === 0) {
  891. if ($childElement.find('video').length > 0) {
  892. $childElement.find(".button_wrapper").append(ThumbnailElement);
  893. }
  894. else {
  895. displayResourceURL = $mainElement.find('img').filter(function () {
  896. return $(this).width() > 200 && $(this).height() > 200
  897. }).attr('src');
  898. $childElement.find(".button_wrapper").append(ViewerElement);
  899. }
  900. }
  901. else {
  902. // eslint-disable-next-line no-unused-vars
  903. const checkVideoNodeCallback = (entries, observer) => {
  904. entries.forEach((entry) => {
  905. //logger(entry);
  906. if (entry.isIntersecting) {
  907. var $targetNode = $(entry.target);
  908. $childElement.find('.IG_THUMBNAIL_MAIN')?.remove();
  909. $childElement.find('.IG_IMAGE_VIEWER')?.remove();
  910.  
  911. // Check if video?
  912. if ($targetNode.find('video').length > 0) {
  913. if ($childElement.find('.IG_THUMBNAIL_MAIN').length === 0) {
  914. $childElement.find(".button_wrapper").append(ThumbnailElement);
  915. }
  916.  
  917. initPostVideoFunction($mainElement);
  918. }
  919. // is Image
  920. else {
  921. displayResourceURL = $targetNode.find('img').attr('src');
  922. $childElement.find(".button_wrapper").append(ViewerElement);
  923. }
  924. }
  925. });
  926. };
  927.  
  928. const observer_i = new IntersectionObserver(checkVideoNodeCallback, {
  929. root: $mainElement.find('div > ul._acay').first().parent().parent().parent()[0],
  930. rootMargin: "0px",
  931. threshold: 0.1,
  932. });
  933.  
  934. // trigger when switching resources
  935. // eslint-disable-next-line no-unused-vars
  936. const observer = new MutationObserver(function (mutation, owner) {
  937. var target = mutation.at(0)?.target;
  938.  
  939. $(target).find('li._acaz').each(function () {
  940. observer_i.observe(this);
  941. });
  942. });
  943.  
  944. // first onload
  945. $mainElement.find('div > ul li._acaz').each(function () {
  946. observer_i.observe(this);
  947. });
  948.  
  949.  
  950. const element = $childElement.eq((tagName === "DIV") ? 0 : $childElement.length - 2).find('div > ul li._acaz')?.parent()[0];
  951. const elementAttr = $childElement.eq((tagName === "DIV") ? 0 : $childElement.length - 2).find('div > ul li._acaz')?.parent().parent()[0];
  952.  
  953. if (element) {
  954. observer.observe(element, {
  955. childList: true
  956. });
  957. }
  958.  
  959. if (elementAttr) {
  960. observer.observe(elementAttr, {
  961. attributes: true
  962. });
  963. }
  964. }
  965. }, 50);
  966.  
  967.  
  968. $childElement.css('position', 'relative');
  969.  
  970. initPostVideoFunction($mainElement);
  971.  
  972. state.GL_registerEventList.push({
  973. element: this,
  974. trigger: [
  975. '.IG_THUMBNAIL_MAIN',
  976. '.IG_NEWTAB_MAIN',
  977. '.IG_DW_ALL_MAIN',
  978. '.IG_DW_MAIN',
  979. '.IG_IMAGE_VIEWER'
  980. ]
  981. });
  982.  
  983. $(this).on('click', '.IG_IMAGE_VIEWER', function () {
  984. if (displayResourceURL != null) {
  985. openImageViewer(displayResourceURL);
  986. }
  987. else {
  988. alert("Cannot find resource url.");
  989. }
  990. });
  991.  
  992. $(this).on('click', '.IG_THUMBNAIL_MAIN', function () {
  993. updateLoadingBar(true);
  994.  
  995. state.GL_username = $mainElement.attr('data-username');
  996. state.GL_postPath = location.pathname.replace(/\/$/, '').split('/').at(-1) || $mainElement.find('a[href^="/p/"]').first().attr("href").split("/").at(2) || $(this).parent().parent().parent().children("div:last-child").children("div").children("div:last-child").find('a[href^="/p/"]').last().attr("href").split("/").at(2);
  997.  
  998. var index = getVisibleNodeIndex($mainElement);
  999.  
  1000. IG_createDM(true, false);
  1001.  
  1002. createMediaListDOM(state.GL_postPath, ".IG_POPUP_DIG .IG_POPUP_DIG_MAIN .IG_POPUP_DIG_BODY", "").then(() => {
  1003. let checkBlob = setInterval(() => {
  1004. if ($('.IG_POPUP_DIG .IG_POPUP_DIG_MAIN .IG_POPUP_DIG_BODY a').length > 0) {
  1005. clearInterval(checkBlob);
  1006. var $videoThumbnail = $('.IG_POPUP_DIG .IG_POPUP_DIG_BODY a[data-globalindex="' + (index + 1) + '"]')?.parent().find('.videoThumbnail')?.first();
  1007.  
  1008. if ($videoThumbnail != null && $videoThumbnail.length > 0) {
  1009. $videoThumbnail.trigger("click");
  1010. }
  1011. else {
  1012. alert('Can not find thumbnail url.');
  1013. }
  1014.  
  1015. updateLoadingBar(false);
  1016. $('.IG_POPUP_DIG').remove();
  1017. }
  1018. }, 250);
  1019. });
  1020. });
  1021.  
  1022. $(this).on('click', '.IG_NEWTAB_MAIN', function () {
  1023. updateLoadingBar(true);
  1024.  
  1025. state.GL_username = $mainElement.attr('data-username');
  1026. state.GL_postPath = location.pathname.replace(/\/$/, '').split('/').at(-1) || $mainElement.find('a[href^="/p/"]').first().attr("href").split("/").at(2) || $(this).parent().parent().parent().children("div:last-child").children("div").children("div:last-child").find('a[href^="/p/"]').last().attr("href").split("/").at(2);
  1027.  
  1028. var index = getVisibleNodeIndex($mainElement);
  1029.  
  1030. IG_createDM(true, false);
  1031.  
  1032. createMediaListDOM(state.GL_postPath, ".IG_POPUP_DIG .IG_POPUP_DIG_MAIN .IG_POPUP_DIG_BODY", "").then(() => {
  1033. let checkBlob = setInterval(() => {
  1034. if ($('.IG_POPUP_DIG .IG_POPUP_DIG_MAIN .IG_POPUP_DIG_BODY a').length > 0) {
  1035. clearInterval(checkBlob);
  1036. var $linkElement = $('.IG_POPUP_DIG .IG_POPUP_DIG_BODY a[data-globalindex="' + (index + 1) + '"]');
  1037.  
  1038. if (USER_SETTING.FORCE_RESOURCE_VIA_MEDIA && USER_SETTING.NEW_TAB_ALWAYS_FORCE_MEDIA_IN_POST) {
  1039. triggerLinkElement($linkElement.first()[0], true);
  1040. }
  1041. else {
  1042. let href = $linkElement?.attr('data-href');
  1043. if (href) {
  1044. // replace https://instagram.ftpe8-2.fna.fbcdn.net/ to https://scontent.cdninstagram.com/ becase of same origin policy (some video)
  1045. var urlObj = new URL(href);
  1046. urlObj.host = 'scontent.cdninstagram.com';
  1047.  
  1048. openNewTab(urlObj.href);
  1049. }
  1050. else {
  1051. alert('Can not find open tab url.');
  1052. }
  1053. }
  1054.  
  1055. updateLoadingBar(false);
  1056. $('.IG_POPUP_DIG').remove();
  1057. }
  1058. }, 250);
  1059. });
  1060. });
  1061.  
  1062. // Running if user click the download all icon
  1063. $(this).on('click', '.IG_DW_ALL_MAIN', async function () {
  1064. state.GL_username = $mainElement.attr('data-username');
  1065. state.GL_postPath = location.pathname.replace(/\/$/, '').split('/').at(-1) || $mainElement.find('a[href^="/p/"]').first().attr("href").split("/").at(2) || $(this).parent().parent().parent().children("div:last-child").children("div").children("div:last-child").find('a[href^="/p/"]').last().attr("href").split("/").at(2);
  1066.  
  1067. // Create element that download dailog
  1068. IG_createDM(USER_SETTING.DIRECT_DOWNLOAD_ALL, true);
  1069.  
  1070. $("#article-id").html(`<a href="https://www.instagram.com/p/${state.GL_postPath}">${state.GL_postPath}</a>`);
  1071.  
  1072. $('.IG_POPUP_DIG .IG_POPUP_DIG_MAIN .IG_POPUP_DIG_BODY a').each(function () {
  1073. $(this).wrap('<div></div>');
  1074. $(this).before('<label class="inner_box_wrapper"><input class="inner_box" type="checkbox"><span></span></label>');
  1075. $(this).after(`<div data-ih-locale-title="NEW_TAB" title="${_i18n("NEW_TAB")}" class="newTab">${SVG.NEW_TAB}</div>`);
  1076.  
  1077. if ($(this).attr('data-name') == 'video') {
  1078. $(this).after(`<div data-ih-locale-title="THUMBNAIL_INTRO" title="${_i18n("THUMBNAIL_INTRO")}" class="videoThumbnail">${SVG.THUMBNAIL}</div>`);
  1079. }
  1080. });
  1081.  
  1082.  
  1083. createMediaListDOM(state.GL_postPath, ".IG_POPUP_DIG .IG_POPUP_DIG_MAIN .IG_POPUP_DIG_BODY", _i18n("LOAD_BLOB_MULTIPLE")).then(() => {
  1084. let checkBlob = setInterval(() => {
  1085. if ($('.IG_POPUP_DIG .IG_POPUP_DIG_MAIN .IG_POPUP_DIG_BODY a').length > 0) {
  1086. clearInterval(checkBlob);
  1087. $('.IG_POPUP_DIG .IG_POPUP_DIG_MAIN .IG_POPUP_DIG_BODY a').each(function () {
  1088. $(this).trigger("click");
  1089. });
  1090.  
  1091. $('.IG_POPUP_DIG').remove();
  1092. }
  1093. }, 250);
  1094. });
  1095. });
  1096.  
  1097. // Running if user click the download icon
  1098. $(this).on('click', '.IG_DW_MAIN', async function () {
  1099. state.GL_username = $mainElement.attr('data-username');
  1100. state.GL_postPath = location.pathname.replace(/\/$/, '').split('/').at(-1) || $mainElement.find('a[href^="/p/"]').first().attr("href").split("/").at(2) || $(this).parent().parent().parent().children("div:last-child").children("div").children("div:last-child").find('a[href^="/p/"]').last().attr("href").split("/").at(2);
  1101.  
  1102. // Create element that download dailog
  1103. IG_createDM(USER_SETTING.DIRECT_DOWNLOAD_ALL, true);
  1104.  
  1105. $("#article-id").html(`<a href="https://www.instagram.com/p/${state.GL_postPath}">${state.GL_postPath}</a>`);
  1106.  
  1107. if (USER_SETTING.DIRECT_DOWNLOAD_VISIBLE_RESOURCE) {
  1108. updateLoadingBar(true);
  1109. IG_setDM(true);
  1110.  
  1111. var index = getVisibleNodeIndex($(this).parent().parent().parent());
  1112.  
  1113. createMediaListDOM(state.GL_postPath, ".IG_POPUP_DIG .IG_POPUP_DIG_MAIN .IG_POPUP_DIG_BODY", "").then(() => {
  1114. let checkBlob = setInterval(() => {
  1115. if ($('.IG_POPUP_DIG .IG_POPUP_DIG_MAIN .IG_POPUP_DIG_BODY a').length > 0) {
  1116. clearInterval(checkBlob);
  1117. var href = $('.IG_POPUP_DIG .IG_POPUP_DIG_BODY a[data-globalindex="' + (index + 1) + '"]')?.attr('data-href');
  1118.  
  1119. if (href) {
  1120. updateLoadingBar(false);
  1121. $('.IG_POPUP_DIG .IG_POPUP_DIG_BODY a[data-globalindex="' + (index + 1) + '"]')?.trigger("click");
  1122. }
  1123. else {
  1124. alert('Can not find download url.');
  1125. }
  1126.  
  1127. $('.IG_POPUP_DIG').remove();
  1128. }
  1129. }, 250);
  1130. });
  1131.  
  1132. return;
  1133. }
  1134.  
  1135. if (!USER_SETTING.DIRECT_DOWNLOAD_ALL) {
  1136. // Find video/image element and add the download icon
  1137. var s = 0;
  1138. var multiple = $(this).parent().parent().find(resourceCountSelector).length;
  1139. var blob = USER_SETTING.FORCE_FETCH_ALL_RESOURCES;
  1140. var publish_time = new Date(
  1141. $(this).parent().parent().parent().find('a[href] time[datetime]').filter(function () {
  1142. let href = $(this).parents("a[href]").attr("href");
  1143. return href?.startsWith("/p/") || href?.match(/\/([\w.\-_]+)\/p\//ig) != null;
  1144. }).first().attr('datetime')
  1145. ).getTime();
  1146.  
  1147. // If posts have more than one images or videos.
  1148. if (multiple) {
  1149. $(this).parent().parent().find(resourceCountSelector).each(function () {
  1150. let element_videos = $(this).parent().parent().parent().find('video');
  1151. //if(element_videos && element_videos.attr('src') && element_videos.attr('src').match(/^blob:/ig)){
  1152. if (element_videos && element_videos.attr('src')) {
  1153. blob = true;
  1154. }
  1155. });
  1156.  
  1157.  
  1158. if (blob || USER_SETTING.FORCE_RESOURCE_VIA_MEDIA) {
  1159. createMediaListDOM(state.GL_postPath, ".IG_POPUP_DIG .IG_POPUP_DIG_MAIN .IG_POPUP_DIG_BODY", _i18n("LOAD_BLOB_MULTIPLE"));
  1160. }
  1161. else {
  1162. $(this).parent().parent().find(resourceCountSelector).each(function () {
  1163. s++;
  1164. let element_videos = $(this).find('video');
  1165. let element_images = $(this).find('._aagv img');
  1166. let imgLink = (element_images.attr('srcset')) ? element_images.attr('srcset').split(" ")[0] : element_images.attr('src');
  1167.  
  1168. if (element_videos && element_videos.attr('src')) {
  1169. blob = true;
  1170. }
  1171. if (element_images && imgLink) {
  1172. $('.IG_POPUP_DIG .IG_POPUP_DIG_MAIN .IG_POPUP_DIG_BODY').append(`<a datetime="${publish_time}" data-needed="direct" data-path="${state.GL_postPath}" data-name="photo" data-type="jpg" data-globalIndex="${s}" href="javascript:;" data-href="${imgLink}"><img width="100" src="${imgLink}" /><br/>- <span data-ih-locale="IMG">${_i18n("IMG")}</span> ${s} -</a>`);
  1173. }
  1174.  
  1175. });
  1176.  
  1177. if (blob) {
  1178. createMediaListDOM(state.GL_postPath, ".IG_POPUP_DIG .IG_POPUP_DIG_MAIN .IG_POPUP_DIG_BODY", _i18n("LOAD_BLOB_RELOAD"));
  1179. }
  1180. }
  1181. }
  1182. else {
  1183. if (USER_SETTING.FORCE_RESOURCE_VIA_MEDIA) {
  1184. createMediaListDOM(state.GL_postPath, ".IG_POPUP_DIG .IG_POPUP_DIG_MAIN .IG_POPUP_DIG_BODY", _i18n("LOAD_BLOB_MULTIPLE"));
  1185. }
  1186. else {
  1187. s++;
  1188. let element_videos = $(this).parent().parent().parent().find('video');
  1189. let element_images = $(this).parent().parent().parent().find('._aagv img');
  1190. let imgLink = (element_images.attr('srcset')) ? element_images.attr('srcset').split(" ")[0] : element_images.attr('src');
  1191.  
  1192.  
  1193. if (element_videos && element_videos.attr('src')) {
  1194. createMediaListDOM(state.GL_postPath, ".IG_POPUP_DIG .IG_POPUP_DIG_MAIN .IG_POPUP_DIG_BODY", _i18n("LOAD_BLOB_ONE"));
  1195. }
  1196. if (element_images && imgLink) {
  1197. $('.IG_POPUP_DIG .IG_POPUP_DIG_MAIN .IG_POPUP_DIG_BODY').append(`<a datetime="${publish_time}" data-needed="direct" data-path="${state.GL_postPath}" data-name="photo" data-type="jpg" data-globalIndex="${s}" href="javascript:;" href="" data-href="${imgLink}"><img width="100" src="${imgLink}" /><br/>- <span data-ih-locale="IMG">${_i18n("IMG")}</span> ${s} -</a>`);
  1198. }
  1199. }
  1200. }
  1201. }
  1202.  
  1203. $('.IG_POPUP_DIG .IG_POPUP_DIG_MAIN .IG_POPUP_DIG_BODY a').each(function () {
  1204. $(this).wrap('<div></div>');
  1205. $(this).before('<label class="inner_box_wrapper"><input class="inner_box" type="checkbox"><span></span></label>');
  1206. $(this).after(`<div data-ih-locale-title="NEW_TAB" title="${_i18n("NEW_TAB")}" class="newTab">${SVG.NEW_TAB}</div>`);
  1207.  
  1208. if ($(this).attr('data-name') == 'video') {
  1209. $(this).after(`<div data-ih-locale-title="THUMBNAIL_INTRO" title="${_i18n("THUMBNAIL_INTRO")}" class="videoThumbnail">${SVG.THUMBNAIL}</div>`);
  1210. }
  1211. });
  1212.  
  1213. if (USER_SETTING.DIRECT_DOWNLOAD_ALL) {
  1214. createMediaListDOM(state.GL_postPath, ".IG_POPUP_DIG .IG_POPUP_DIG_MAIN .IG_POPUP_DIG_BODY", _i18n("LOAD_BLOB_MULTIPLE")).then(() => {
  1215. let checkBlob = setInterval(() => {
  1216. if ($('.IG_POPUP_DIG .IG_POPUP_DIG_MAIN .IG_POPUP_DIG_BODY a').length > 0) {
  1217. clearInterval(checkBlob);
  1218. $('.IG_POPUP_DIG .IG_POPUP_DIG_MAIN .IG_POPUP_DIG_BODY a').each(function () {
  1219. $(this).trigger("click");
  1220. });
  1221.  
  1222. $('.IG_POPUP_DIG').remove();
  1223. }
  1224. }, 250);
  1225. });
  1226. }
  1227. });
  1228.  
  1229. // Add the mark that download is ready
  1230. var username = $(this).find("header > div:last-child > div:first-child span a").first().text() || $(this).find('a[href^="/"]').filter(function () {
  1231. return $(this)?.text()?.length > 0;
  1232. }).first().text();
  1233.  
  1234. $(this).attr('data-snig', 'canDownload');
  1235. $(this).attr('data-username', username);
  1236. }
  1237. });
  1238. }
  1239.  
  1240.  
  1241. /**
  1242. * filterResourceData
  1243. * @description Standardized resource object format
  1244. *
  1245. * @param {Object} data
  1246. * @return {Object}
  1247. */
  1248. function filterResourceData(data) {
  1249. var resource = data.shortcode_media ?? data;
  1250. if (resource.owner == null && resource.user != null) {
  1251. resource.owner = resource.user;
  1252. }
  1253.  
  1254. if (resource.owner == null) {
  1255. logger('carousel_media:', 'undefined username');
  1256. alert('carousel_media: undefined username');
  1257. }
  1258.  
  1259. return resource;
  1260. }
  1261.  
  1262.  
  1263. /**
  1264. * createMediaListDOM
  1265. * @description Create a list of media elements from post URLs
  1266. *
  1267. * @param {String} postURL
  1268. * @param {String} selector - Use CSS element selectors to choose where it appears.
  1269. * @param {String} message - i18n display loading message
  1270. * @return {void}
  1271. */
  1272. async function createMediaListDOM(postURL, selector, message) {
  1273. try {
  1274. $(`${selector} a`).remove();
  1275. $(selector).append('<p id="_SNLOAD">' + message + '</p>');
  1276. let result = await getBlobMedia(postURL);
  1277. let resource = filterResourceData(result.data);
  1278.  
  1279. if (result.type === 'query_hash') {
  1280. let idx = 1;
  1281.  
  1282. // GraphVideo
  1283. if (resource.__typename == "GraphVideo" && resource.video_url) {
  1284. $(selector).append(`<a media-id="${resource.id}" datetime="${resource.taken_at_timestamp}" data-blob="true" data-needed="direct" data-path="${resource.shortcode}" data-name="video" data-type="mp4" data-username="${resource.owner.username}" data-globalIndex="${idx}" href="javascript:;" data-href="${resource.video_url}"><img width="100" src="${resource.display_resources[1].src}" /><br/>- <span data-ih-locale="VID">${_i18n("VID")}</span> ${idx} -</a>`);
  1285. idx++;
  1286. }
  1287. // GraphImage
  1288. if (resource.__typename == "GraphImage") {
  1289. $(selector).append(`<a media-id="${resource.id}" datetime="${resource.taken_at_timestamp}" data-blob="true" data-needed="direct" data-path="${resource.shortcode}" data-name="photo" data-type="jpg" data-username="${resource.owner.username}" data-globalIndex="${idx}" href="javascript:;" data-href="${resource.display_resources[resource.display_resources.length - 1].src}"><img width="100" src="${resource.display_resources[1].src}" /><br/>- <span data-ih-locale="IMG">${_i18n("IMG")}</span> ${idx} -</a>`);
  1290. idx++;
  1291. }
  1292. // GraphSidecar
  1293. if (resource.__typename == "GraphSidecar" && resource.edge_sidecar_to_children) {
  1294. for (let e of resource.edge_sidecar_to_children.edges) {
  1295. if (e.node.__typename == "GraphVideo") {
  1296. $(selector).append(`<a media-id="${e.node.id}" datetime="${resource.taken_at_timestamp}" data-blob="true" data-needed="direct" data-path="${resource.shortcode}" data-name="video" data-type="mp4" data-username="${resource.owner.username}" data-globalIndex="${idx}" href="javascript:;" data-href="${e.node.video_url}"><img width="100" src="${e.node.display_resources[1].src}" /><br/>- <span data-ih-locale-title="VID">${_i18n("VID")}</span> ${idx} -</a>`);
  1297. }
  1298.  
  1299. if (e.node.__typename == "GraphImage") {
  1300. $(selector).append(`<a media-id="${e.node.id}" datetime="${resource.taken_at_timestamp}" data-blob="true" data-needed="direct" data-path="${resource.shortcode}" data-name="photo" data-type="jpg" data-username="${resource.owner.username}" data-globalIndex="${idx}" href="javascript:;" data-href="${e.node.display_resources[e.node.display_resources.length - 1].src}"><img width="100" src="${e.node.display_resources[1].src}" /><br/>- <span data-ih-locale="IMG">${_i18n("IMG")}</span> ${idx} -</a>`);
  1301. }
  1302. idx++;
  1303. }
  1304. }
  1305. }
  1306. else {
  1307. if (resource.carousel_media) {
  1308. logger('carousel_media');
  1309.  
  1310. resource.carousel_media.forEach((mda, ind) => {
  1311. let idx = ind + 1;
  1312. // Image
  1313. if (mda.video_versions == null) {
  1314. mda.image_versions2.candidates.sort(function (a, b) {
  1315. let aSTP = new URL(a.url).searchParams.get('stp');
  1316. let bSTP = new URL(b.url).searchParams.get('stp');
  1317.  
  1318. if (aSTP && bSTP) {
  1319. if (aSTP.length > bSTP.length) return 1;
  1320. if (aSTP.length < bSTP.length) return -1;
  1321. }
  1322. else {
  1323. if (a.width < b.width) return 1;
  1324. if (a.width > b.width) return -1;
  1325. }
  1326.  
  1327. return 0;
  1328. });
  1329.  
  1330. $(selector).append(`<a media-id="${mda.pk}" datetime="${mda.taken_at}" data-blob="true" data-needed="direct" data-path="${resource.code}" data-name="photo" data-type="jpg" data-username="${resource.owner.username}" data-globalIndex="${idx}" href="javascript:;" data-href="${mda.image_versions2.candidates[0].url}"><img width="100" src="${mda.image_versions2.candidates[0].url}" /><br/>- <span data-ih-locale="IMG">${_i18n("IMG")}</span> ${idx} -</a>`);
  1331. }
  1332. // Video
  1333. else {
  1334. $(selector).append(`<a media-id="${mda.pk}" datetime="${mda.taken_at}" data-blob="true" data-needed="direct" data-path="${resource.code}" data-name="video" data-type="mp4" data-username="${resource.owner.username}" data-globalIndex="${idx}" href="javascript:;" data-href="${mda.video_versions[0].url}"><img width="100" src="${mda.image_versions2.candidates[0].url}" /><br/>- <span data-ih-locale="VID">${_i18n("VID")}</span> ${idx} -</a>`);
  1335. }
  1336. });
  1337. }
  1338. else {
  1339. let idx = 1;
  1340. // Image
  1341. if (resource.video_versions == null) {
  1342. resource.image_versions2.candidates.sort(function (a, b) {
  1343. let aSTP = new URL(a.url).searchParams.get('stp');
  1344. let bSTP = new URL(b.url).searchParams.get('stp');
  1345.  
  1346. if (aSTP && bSTP) {
  1347. if (aSTP.length > bSTP.length) return 1;
  1348. if (aSTP.length < bSTP.length) return -1;
  1349. }
  1350. else {
  1351. if (a.width < b.width) return 1;
  1352. if (a.width > b.width) return -1;
  1353. }
  1354.  
  1355. return 0;
  1356. });
  1357.  
  1358. $(selector).append(`<a media-id="${resource.pk}" datetime="${resource.taken_at}" data-blob="true" data-needed="direct" data-path="${resource.code}" data-name="photo" data-type="jpg" data-username="${resource.owner.username}" data-globalIndex="${idx}" href="javascript:;" data-href="${resource.image_versions2.candidates[0].url}"><img width="100" src="${resource.image_versions2.candidates[0].url}" /><br/>- <span data-ih-locale="IMG">${_i18n("IMG")}</span> ${idx} -</a>`);
  1359. }
  1360. // Video
  1361. else {
  1362. $(selector).append(`<a media-id="${resource.pk}" datetime="${resource.taken_at}" data-blob="true" data-needed="direct" data-path="${resource.code}" data-name="video" data-type="mp4" data-username="${resource.owner.username}" data-globalIndex="${idx}" href="javascript:;" data-href="${resource.video_versions[0].url}"><img width="100" src="${resource.image_versions2.candidates[0].url}" /><br/>- <span data-ih-locale="VID">${_i18n("VID")}</span> ${idx} -</a>`);
  1363. }
  1364. }
  1365. }
  1366.  
  1367. $("#_SNLOAD").remove();
  1368. $('.IG_POPUP_DIG .IG_POPUP_DIG_MAIN .IG_POPUP_DIG_BODY a').each(function () {
  1369. $(this).wrap('<div></div>');
  1370. $(this).before('<label class="inner_box_wrapper"><input class="inner_box" type="checkbox"><span></span></label>');
  1371. $(this).after(`<div data-ih-locale-title="NEW_TAB" title="${_i18n("NEW_TAB")}" class="newTab">${SVG.NEW_TAB}</div>`);
  1372.  
  1373. if ($(this).attr('data-name') == 'video') {
  1374. $(this).after(`<div data-ih-locale-title="THUMBNAIL_INTRO" title="${_i18n("THUMBNAIL_INTRO")}" class="videoThumbnail">${SVG.THUMBNAIL}</div>`);
  1375. }
  1376. });
  1377. }
  1378. catch (err) {
  1379. logger('createMediaListDOM', err);
  1380. };
  1381. }
  1382.  
  1383.  
  1384. /**
  1385. * getVisibleNodeIndex
  1386. * @description Get element visible node
  1387. *
  1388. * @param {Object} $main
  1389. * @return {Integer}
  1390. */
  1391. function getVisibleNodeIndex($main) {
  1392. var index = 0;
  1393. // homepage classList
  1394. var $dot = $main.find('.x1iyjqo2 > div > div:last-child > div');
  1395.  
  1396. // dialog classList, main top classList
  1397. if ($dot == null || !$dot.hasClass('_acnb')) {
  1398. $dot = $main.find('._aatk > div > div:last-child').eq(0).children('div');
  1399. }
  1400.  
  1401. $dot.filter('._acnb').each(function (sIndex) {
  1402. if ($(this).hasClass('_acnf')) {
  1403. index = sIndex;
  1404. }
  1405. });
  1406.  
  1407. return index;
  1408. }
  1409.  
  1410. /**
  1411. * onProfileAvatar
  1412. * @description Trigger user avatar download event or button display event.
  1413. *
  1414. * @param {Boolean} isDownload - Check if it is a download operation
  1415. * @return {void}
  1416. */
  1417. async function onProfileAvatar(isDownload) {
  1418. if (isDownload) {
  1419. updateLoadingBar(true);
  1420.  
  1421. let date = new Date().getTime();
  1422. let timestamp = Math.floor(date / 1000);
  1423. let username = location.pathname.replaceAll(/(reels|tagged)\/$/ig, '').split('/').filter(s => s.length > 0).at(-1);
  1424. let userInfo = await getUserId(username);
  1425.  
  1426. try {
  1427. let dataURL = await getUserHighSizeProfile(userInfo.user.pk);
  1428. saveFiles(dataURL, username, "avatar", timestamp, 'jpg');
  1429. }
  1430. // eslint-disable-next-line no-unused-vars
  1431. catch (err) {
  1432. saveFiles(userInfo.user.profile_pic_url, username, "avatar", timestamp, 'jpg');
  1433. }
  1434.  
  1435. updateLoadingBar(false);
  1436. }
  1437. else {
  1438. // Add the profile download button
  1439. if (!$('.IG_DWPROFILE').length) {
  1440. let profileTimer = setInterval(() => {
  1441. if ($('.IG_DWPROFILE').length) {
  1442. clearInterval(profileTimer);
  1443. return;
  1444. }
  1445.  
  1446. $('header > *[class]:first-child img[alt][draggable]').parent().parent().append(`<div data-ih-locale-title="DW" title="${_i18n("DW")}" class="IG_DWPROFILE">${SVG.DOWNLOAD}</div>`);
  1447. $('header > *[class]:first-child img[alt][draggable]').parent().parent().css('position', 'relative');
  1448. $('header > *[class]:first-child img[alt]:not([draggable])').parent().parent().parent().append(`<div data-ih-locale-title="DW" title="${_i18n("DW")}" class="IG_DWPROFILE">${SVG.DOWNLOAD}</div>`);
  1449. $('header > *[class]:first-child img[alt]:not([draggable])').parent().parent().parent().css('position', 'relative');
  1450. }, 150);
  1451. }
  1452. }
  1453. }
  1454.  
  1455. /**
  1456. * onReels
  1457. * @description Trigger user's reels download event or button display event.
  1458. *
  1459. * @param {Boolean} isDownload - Check if it is a download operation
  1460. * @param {Boolean} isVideo - Check if reel is a video element
  1461. * @param {Boolean} isPreview - Check if it is need to open new tab
  1462. * @return {void}
  1463. */
  1464. async function onReels(isDownload, isVideo, isPreview) {
  1465. if (isDownload) {
  1466. updateLoadingBar(true);
  1467.  
  1468. let reelsPath = location.href.split('?').at(0).split('instagram.com/reels/').at(-1).replaceAll('/', '');
  1469. let result = await getBlobMedia(reelsPath);
  1470. let media = filterResourceData(result.data);
  1471.  
  1472. let timestamp = new Date().getTime();
  1473.  
  1474. if (USER_SETTING.RENAME_PUBLISH_DATE) {
  1475. if (result.type === 'query_hash') {
  1476. timestamp = media.shortcode_media.taken_at_timestamp;
  1477. }
  1478. else {
  1479. timestamp = media.taken_at;
  1480. }
  1481. }
  1482.  
  1483. if (result.type === 'query_hash') {
  1484. if (isVideo && media.shortcode_media.is_video) {
  1485. if (isPreview) {
  1486. openNewTab(media.shortcode_media.video_url);
  1487. }
  1488. else {
  1489. let type = 'mp4';
  1490. saveFiles(media.shortcode_media.video_url, media.shortcode_media.owner.username, "reels", timestamp, type, reelsPath);
  1491. }
  1492. }
  1493. else {
  1494. if (isPreview) {
  1495. openNewTab(media.shortcode_media.display_resources.at(-1).src);
  1496. }
  1497. else {
  1498. let type = 'jpg';
  1499. saveFiles(media.shortcode_media.display_resources.at(-1).src, media.shortcode_media.owner.username, "reels", timestamp, type, reelsPath);
  1500. }
  1501. }
  1502. }
  1503. else {
  1504. if (isVideo && media.video_versions != null) {
  1505. if (isPreview) {
  1506. openNewTab(media.video_versions[0].url);
  1507. }
  1508. else {
  1509. let type = 'mp4';
  1510. saveFiles(media.video_versions[0].url, media.owner.username, "reels", timestamp, type, reelsPath);
  1511. }
  1512. }
  1513. else {
  1514. if (isPreview) {
  1515. openNewTab(media.image_versions2.candidates[0].url);
  1516. }
  1517. else {
  1518. let type = 'jpg';
  1519. saveFiles(media.image_versions2.candidates[0].url, media.owner.username, "reels", timestamp, type, reelsPath);
  1520. }
  1521. }
  1522. }
  1523.  
  1524. updateLoadingBar(false);
  1525. }
  1526. else {
  1527. //$('.IG_REELS_THUMBNAIL, .IG_REELS').remove();
  1528. var timer = setInterval(() => {
  1529. if ($('section > main[role="main"] > div div.x1qjc9v5 video').length > 0) {
  1530. clearInterval(timer);
  1531.  
  1532. if (USER_SETTING.SCROLL_BUTTON) {
  1533. $('#scrollWrapper').remove();
  1534. $('section > main[role="main"]').append('<section id="scrollWrapper"></section>');
  1535. $('section > main[role="main"] > #scrollWrapper').append('<div class="button-up"><div></div></div>');
  1536. $('section > main[role="main"] > #scrollWrapper').append('<div class="button-down"><div></div></div>');
  1537.  
  1538. $('section > main[role="main"] > #scrollWrapper > .button-up').on('click', function () {
  1539. $('section > main[role="main"] > div')[0].scrollBy({ top: -30, behavior: "smooth" });
  1540. });
  1541. $('section > main[role="main"] > #scrollWrapper > .button-down').on('click', function () {
  1542. $('section > main[role="main"] > div')[0].scrollBy({ top: 30, behavior: "smooth" });
  1543. });
  1544. }
  1545.  
  1546. // reels scroll has [tabindex] but header not.
  1547. $('section > main[role="main"] > div[tabindex]').children('div').each(function () {
  1548. if ($(this).children().length > 0) {
  1549. if (!$(this).children().find('.IG_REELS').length) {
  1550. var $main = $(this);
  1551.  
  1552. $(this).children().css('position', 'relative');
  1553.  
  1554. $(this).children().append(`<div data-ih-locale-title="DW" title="${_i18n("DW")}" class="IG_REELS">${SVG.DOWNLOAD}</div>`);
  1555. $(this).children().append(`<div data-ih-locale-title="NEW_TAB" title="${_i18n("NEW_TAB")}" class="IG_REELS_NEWTAB">${SVG.NEW_TAB}</div>`);
  1556. $(this).children().append(`<div data-ih-locale-title="THUMBNAIL_INTRO" title="${_i18n("THUMBNAIL_INTRO")}" class="IG_REELS_THUMBNAIL">${SVG.THUMBNAIL}</div>`);
  1557.  
  1558. // Disable video autoplay
  1559. if (USER_SETTING.DISABLE_VIDEO_LOOPING) {
  1560. $(this).find('video').each(function () {
  1561. $(this).on('ended', function () {
  1562. if (!$(this).data('loop')) {
  1563. let $element_play_button = $(this).next().find('div[role="presentation"] > div svg > path[d^="M5.888"]').parents('button[role="button"], div[role="button"]');
  1564. if ($element_play_button.length > 0) {
  1565. $(this).attr('data-loop', true);
  1566. $element_play_button.trigger("click");
  1567. logger('Adding video event listener #loop, then paused click()');
  1568. }
  1569. else {
  1570. $(this).attr('data-loop', true);
  1571. $(this).parent().find('.xpgaw4o').removeAttr('style');
  1572. this.pause();
  1573. logger('Adding video event listener #loop, then paused pause()');
  1574. }
  1575. }
  1576. });
  1577. });
  1578. }
  1579.  
  1580. // Modify video volume
  1581. //if(USER_SETTING.MODIFY_VIDEO_VOLUME){
  1582. // $(this).find('video').each(function(){
  1583. // $(this).on('play playing', function(){
  1584. // if(!$(this).data('modify')){
  1585. // $(this).attr('data-modify', true);
  1586. // this.volume = VIDEO_VOLUME;
  1587. // logger('(reel) Added video event listener #modify');
  1588. // }
  1589. // });
  1590. // });
  1591. //}
  1592.  
  1593. if (USER_SETTING.HTML5_VIDEO_CONTROL) {
  1594. $(this).find('video').each(function () {
  1595. if (!$(this).data('controls')) {
  1596. let $video = $(this);
  1597.  
  1598. logger('(reel) Added video html5 contorller #modify');
  1599.  
  1600. if (USER_SETTING.MODIFY_VIDEO_VOLUME) {
  1601. this.volume = state.videoVolume;
  1602.  
  1603. $(this).on('loadstart', function () {
  1604. this.volume = state.videoVolume;
  1605. });
  1606. }
  1607.  
  1608. // Restore layout to show details interface
  1609. $(this).on('contextmenu', function (e) {
  1610. e.preventDefault();
  1611. $video.css('z-index', '-1');
  1612. $video.removeAttr('controls');
  1613. });
  1614.  
  1615. // Hide layout to show controller
  1616. $(this).parent().find('video + div div[role="button"]').filter(function () {
  1617. return $(this).parent('div[role="presentation"]').length > 0 && $(this).css('cursor') === 'pointer' && $(this).attr('style') != null;
  1618. }).first().on('contextmenu', function (e) {
  1619. e.preventDefault();
  1620. $video.css('z-index', '2');
  1621. $video.attr('controls', true);
  1622. });
  1623.  
  1624.  
  1625. $(this).on('volumechange', function () {
  1626. // eslint-disable-next-line no-unused-vars
  1627. let $element_mute_button = $(this).parent().find('video + div > div').find('button[type="button"], div[role="button"]').filter(function (idx) {
  1628. // This is mute/unmute's icon
  1629. return $(this).width() <= 64 && $(this).height() <= 64 && $(this).find('svg > path[d^="M16.636 7.028a1.5"], svg > path[d^="M1.5 13.3c-.8"]').length > 0;
  1630. });
  1631.  
  1632. var is_elelment_muted = $element_mute_button.find('svg > path[d^="M16.636"]').length === 0;
  1633.  
  1634. if (this.muted != is_elelment_muted) {
  1635. this.volume = state.videoVolume;
  1636. $element_mute_button?.trigger("click");
  1637. }
  1638.  
  1639. if ($(this).attr('data-completed')) {
  1640. state.videoVolume = this.volume;
  1641. GM_setValue('G_VIDEO_VOLUME', this.volume);
  1642. }
  1643.  
  1644. if (this.volume == state.videoVolume) {
  1645. $(this).attr('data-completed', true);
  1646. }
  1647. });
  1648.  
  1649. $(this).css('position', 'absolute');
  1650. $(this).css('z-index', '2');
  1651. $(this).attr('data-controls', true);
  1652. $(this).attr('controls', true);
  1653. }
  1654. });
  1655. }
  1656.  
  1657. var $videos = $main.find('video');
  1658. var $buttonParent = $(this).find('div[role="presentation"] > div[role="button"] > div').first();
  1659. toggleVolumeSilder($videos, $buttonParent, 'reel');
  1660. }
  1661. }
  1662. });
  1663. }
  1664. }, 250);
  1665. }
  1666. }
  1667.  
  1668. /**
  1669. * onStoryAll
  1670. * @description Trigger user's story all download event.
  1671. *
  1672. * @return {void}
  1673. */
  1674. async function onStoryAll() {
  1675. updateLoadingBar(true);
  1676.  
  1677. let date = new Date().getTime();
  1678. let timestamp = Math.floor(date / 1000);
  1679. let username = $("body > div section._ac0a header._ac0k ._ac0l a + div a").first().text() || location.pathname.split("/").filter(s => s.length > 0).at(1);
  1680.  
  1681. let userInfo = await getUserId(username);
  1682. let userId = userInfo.user.pk;
  1683. let stories = await getStories(userId);
  1684.  
  1685. let complete = 0;
  1686. setDownloadProgress(complete, stories.data.reels_media[0].items.length);
  1687.  
  1688. stories.data.reels_media[0].items.forEach((item, idx) => {
  1689. setTimeout(() => {
  1690. if (USER_SETTING.RENAME_PUBLISH_DATE) {
  1691. timestamp = item.taken_at_timestamp;
  1692. }
  1693.  
  1694. item.display_resources.sort(function (a, b) {
  1695. if (a.config_width < b.config_width) return 1;
  1696. if (a.config_width > b.config_width) return -1;
  1697. return 0;
  1698. });
  1699.  
  1700. if (item.is_video) {
  1701. saveFiles(item.video_resources[0].src, username, "stories", timestamp, 'mp4', item.id).then(() => {
  1702. setDownloadProgress(++complete, stories.data.reels_media[0].items.length);
  1703. });
  1704. }
  1705. else {
  1706. saveFiles(item.display_resources[0].src, username, "stories", timestamp, 'jpg', item.id).then(() => {
  1707. setDownloadProgress(++complete, stories.data.reels_media[0].items.length);
  1708. });
  1709. }
  1710. }, 100 * idx);
  1711. });
  1712. }
  1713.  
  1714. /**
  1715. * onStory
  1716. * @description Trigger user's story download event or button display event.
  1717. *
  1718. * @param {Boolean} isDownload - Check if it is a download operation
  1719. * @param {Boolean} isForce - Check if downloading directly from API instead of cache
  1720. * @param {Boolean} isPreview - Check if it is need to open new tab
  1721. * @return {void}
  1722. */
  1723. async function onStory(isDownload, isForce, isPreview) {
  1724. var username = $("body > div section._ac0a header._ac0k ._ac0l a + div a").first().text() || location.pathname.split("/").filter(s => s.length > 0).at(1);
  1725. if (isDownload) {
  1726. let date = new Date().getTime();
  1727. let timestamp = Math.floor(date / 1000);
  1728.  
  1729. updateLoadingBar(true);
  1730. if (USER_SETTING.FORCE_RESOURCE_VIA_MEDIA && !state.tempFetchRateLimit) {
  1731. let mediaId = null;
  1732.  
  1733. let userInfo = await getUserId(username);
  1734. let userId = userInfo.user.pk;
  1735. let stories = await getStories(userId);
  1736. let urlID = location.pathname.split('/').filter(s => s.length > 0 && s.match(/^([0-9]{10,})$/)).at(-1);
  1737.  
  1738. /*
  1739. let latest_reel_media = stories.data.reels_media[0].latest_reel_media;
  1740. let last_seen = stories.data.reels_media[0].seen;
  1741. logger(stories);
  1742.  
  1743. if(urlID == null){
  1744. mediaId = stories.data.reels_media[0].items.filter(function(item, index){
  1745. return item.taken_at_timestamp === last_seen && item.taken_at_timestamp !== latest_reel_media || last_seen === latest_reel_media && index === 0;
  1746. })?.at(0)?.id;
  1747. logger('nula', mediaId);
  1748. }
  1749. else{
  1750. stories.data.reels_media[0].items.forEach(item => {
  1751. if(item.id == urlID){
  1752. mediaId = item.id;
  1753. }
  1754. });
  1755. }
  1756. */
  1757.  
  1758. stories.data.reels_media[0].items.forEach(item => {
  1759. if (item.id == urlID) {
  1760. mediaId = item.id;
  1761. }
  1762. });
  1763.  
  1764. if (mediaId == null) {
  1765. let $header = getStoryProgress(username);
  1766.  
  1767. $header.each(function (index) {
  1768. if ($(this).children().length > 0) {
  1769. mediaId = stories.data.reels_media[0].items[index].id;
  1770. }
  1771. });
  1772. }
  1773.  
  1774. if (mediaId == null) {
  1775. // appear in from profile page to story page
  1776. $('body > div section:visible div.x1ned7t2.x78zum5 > div').each(function (index) {
  1777. if ($(this).hasClass('x1lix1fw')) {
  1778. if ($(this).children().length > 0) {
  1779. mediaId = stories.data.reels_media[0].items[index].id;
  1780. }
  1781. }
  1782. });
  1783.  
  1784. // appear in from home page to story page
  1785. $('body > div section:visible ._ac0k > ._ac3r > div').each(function (index) {
  1786. if ($(this).children().hasClass('_ac3q')) {
  1787. mediaId = stories.data.reels_media[0].items[index].id;
  1788. }
  1789. });
  1790. }
  1791.  
  1792. if (mediaId == null) {
  1793. mediaId = location.pathname.split('/').filter(s => s.length > 0 && s.match(/^([0-9]{10,})$/)).at(-1);
  1794. }
  1795.  
  1796. let result = await getMediaInfo(mediaId);
  1797.  
  1798. if (USER_SETTING.RENAME_PUBLISH_DATE) {
  1799. timestamp = result.items[0].taken_at;
  1800. }
  1801.  
  1802. if (result.status === 'ok') {
  1803. if (result.items[0].video_versions) {
  1804. if (isPreview) {
  1805. openNewTab(result.items[0].video_versions[0].url);
  1806. }
  1807. else {
  1808. saveFiles(result.items[0].video_versions[0].url, username, "stories", timestamp, 'mp4', mediaId);
  1809. }
  1810. }
  1811. else {
  1812. if (isPreview) {
  1813. openNewTab(result.items[0].image_versions2.candidates[0].url);
  1814. }
  1815. else {
  1816. saveFiles(result.items[0].image_versions2.candidates[0].url, username, "stories", timestamp, 'jpg', mediaId);
  1817. }
  1818. }
  1819. }
  1820. else {
  1821. if (USER_SETTING.USE_BLOB_FETCH_WHEN_MEDIA_RATE_LIMIT) {
  1822. state.tempFetchRateLimit = true;
  1823. onStory(isDownload, isForce, isPreview);
  1824. }
  1825. else {
  1826. alert('Fetch failed from Media API. API response message: ' + result.message);
  1827. }
  1828. logger(result);
  1829. }
  1830.  
  1831. updateLoadingBar(false);
  1832. return;
  1833. }
  1834.  
  1835. if ($('body > div section:visible video[playsinline]').length > 0) {
  1836. // Download stories if it is video
  1837. let type = "mp4";
  1838. let videoURL = "";
  1839. let targetURL = location.pathname.replace(/\/$/ig, '').split("/").at(-1);
  1840. let mediaId = null;
  1841.  
  1842. if (state.GL_dataCache.stories[username] && !isForce) {
  1843. logger('Fetch from memory cache:', username);
  1844. state.GL_dataCache.stories[username].data.reels_media[0].items.forEach(item => {
  1845. if (item.id == targetURL) {
  1846. videoURL = item.video_resources[0].src;
  1847. if (USER_SETTING.RENAME_PUBLISH_DATE) {
  1848. timestamp = item.taken_at_timestamp;
  1849. mediaId = item.id;
  1850. }
  1851. }
  1852. });
  1853.  
  1854. if (videoURL.length == 0) {
  1855. logger('Memory cache not found, try fetch from API:', username);
  1856. onStory(true, true);
  1857. return;
  1858. }
  1859. }
  1860. else {
  1861. let userInfo = await getUserId(username);
  1862. let userId = userInfo.user.pk;
  1863. let stories = await getStories(userId);
  1864.  
  1865. stories.data.reels_media[0].items.forEach(item => {
  1866. if (item.id == targetURL) {
  1867. videoURL = item.video_resources[0].src;
  1868. if (USER_SETTING.RENAME_PUBLISH_DATE) {
  1869. timestamp = item.taken_at_timestamp;
  1870. mediaId = item.id;
  1871. }
  1872. }
  1873. });
  1874.  
  1875. // GitHub issue #4: thinkpad4
  1876. if (videoURL.length == 0) {
  1877.  
  1878. let $header = getStoryProgress(username);
  1879.  
  1880. $header.each(function (index) {
  1881. if ($(this).children().length > 0) {
  1882. videoURL = stories.data.reels_media[0].items[index].video_resources[0].src;
  1883. if (USER_SETTING.RENAME_PUBLISH_DATE) {
  1884. timestamp = stories.data.reels_media[0].items[index].taken_at_timestamp;
  1885. mediaId = stories.data.reels_media[0].items[index].id;
  1886. }
  1887. }
  1888. });
  1889.  
  1890.  
  1891. if (videoURL.length == 0) {
  1892. // appear in from profile page to story page
  1893. $('body > div section:visible div.x1ned7t2.x78zum5 > div').each(function (index) {
  1894. if ($(this).hasClass('x1lix1fw')) {
  1895. if ($(this).children().length > 0) {
  1896. videoURL = stories.data.reels_media[0].items[index].video_resources[0].src;
  1897. if (USER_SETTING.RENAME_PUBLISH_DATE) {
  1898. timestamp = stories.data.reels_media[0].items[index].taken_at_timestamp;
  1899. mediaId = stories.data.reels_media[0].items[index].id;
  1900. }
  1901. }
  1902. }
  1903. });
  1904.  
  1905. // appear in from home page to story page
  1906. $('body > div section:visible ._ac0k > ._ac3r > div').each(function (index) {
  1907. if ($(this).children().hasClass('_ac3q')) {
  1908. videoURL = stories.data.reels_media[0].items[index].video_resources[0].src;
  1909. if (USER_SETTING.RENAME_PUBLISH_DATE) {
  1910. timestamp = stories.data.reels_media[0].items[index].taken_at_timestamp;
  1911. mediaId = stories.data.reels_media[0].items[index].id;
  1912. }
  1913. }
  1914. });
  1915. }
  1916. }
  1917.  
  1918. state.GL_dataCache.stories[username] = stories;
  1919. }
  1920.  
  1921. if (videoURL.length == 0) {
  1922. alert(_i18n("NO_VID_URL"));
  1923. }
  1924. else {
  1925. if (isPreview) {
  1926. openNewTab(videoURL);
  1927. }
  1928. else {
  1929. saveFiles(videoURL, username, "stories", timestamp, type, mediaId);
  1930. }
  1931. }
  1932. }
  1933. else {
  1934. // Download stories if it is image
  1935. let srcset = $('body > div section:visible img[referrerpolicy][class], body > div section:visible img[crossorigin][class]:not([alt])').attr('srcset')?.split(',')[0]?.split(' ')[0];
  1936. let link = (srcset) ? srcset : $('body > div section:visible img[referrerpolicy][class], body > div section:visible img[crossorigin][class]:not([alt])').filter(function () {
  1937. return $(this).parents('a').length === 0 && $(this).width() === $(this).parent().width();
  1938. }).attr('src');
  1939.  
  1940. if (!link) {
  1941. // _aa63 mean stories picture in stories page (not avatar)
  1942. let $element = $('body > div section:visible img._aa63');
  1943. link = ($element.attr('srcset')) ? $element.attr('srcset')?.split(',')[0]?.split(' ')[0] : $element.attr('src');
  1944. }
  1945.  
  1946. if (USER_SETTING.RENAME_PUBLISH_DATE) {
  1947. timestamp = new Date($('body > div section:visible time[datetime][class]').first().attr('datetime')).getTime();
  1948. }
  1949.  
  1950. let downloadLink = link;
  1951. let type = 'jpg';
  1952.  
  1953. if (isPreview) {
  1954. openNewTab(downloadLink);
  1955. }
  1956. else {
  1957. saveFiles(downloadLink, username, "stories", timestamp, type, getStoryId(downloadLink) ?? "");
  1958. }
  1959. }
  1960.  
  1961. state.tempFetchRateLimit = false;
  1962. updateLoadingBar(false);
  1963. }
  1964. else {
  1965. // Add the stories download button
  1966. if (!$('.IG_DWSTORY').length) {
  1967. state.GL_dataCache.stories = {};
  1968. let $element = null;
  1969. // Default detecter (section layout mode)
  1970. if ($('body > div section._ac0a').length > 0) {
  1971. $element = $('body > div section:visible._ac0a');
  1972. }
  1973. // detecter (single story layout mode)
  1974. else {
  1975. $element = $('body > div section:visible > div > div[style]:not([class])');
  1976. $element.css('position', 'relative');
  1977. }
  1978.  
  1979.  
  1980. if ($element.length === 0) {
  1981. $element = $('div[id^="mount"] section > div > a[href="/"]').parent().parent().parent().find('section:visible > div > div[style]:not([class])');
  1982. $element.css('position', 'relative');
  1983. }
  1984.  
  1985. if ($element.length === 0) {
  1986. $element = $('div[id^="mount"] section > div > a[href="/"]').parent().parent().parent().find('section:visible > div div[style]:not([class]) > div:not([data-visualcompletion="loading-state"])');
  1987. $element.css('position', 'relative');
  1988. }
  1989.  
  1990.  
  1991. // Detecter for div layout mode
  1992. if ($element.length === 0) {
  1993. let $$element = $('body > div div:not([hidden]) section:visible > div div[class][style] > div[style]:not([class])');
  1994. let nowSize = 0;
  1995.  
  1996. $$element.each(function () {
  1997. if ($(this).width() > nowSize) {
  1998. nowSize = $(this).width();
  1999. $element = $(this).children('div').first();
  2000. }
  2001. });
  2002. }
  2003.  
  2004.  
  2005. if ($element != null) {
  2006. $element.first().css('position', 'relative');
  2007. $element.first().append(`<div data-ih-locale-title="DW" title="${_i18n("DW")}" class="IG_DWSTORY">${SVG.DOWNLOAD}</div>`);
  2008. $element.first().append(`<div data-ih-locale-title="NEW_TAB" title="${_i18n("NEW_TAB")}" class="IG_DWNEWTAB">${SVG.NEW_TAB}</div>`);
  2009.  
  2010. let $header = getStoryProgress(username);
  2011. if ($header.length > 1) {
  2012. $element.first().append(`<div data-ih-locale-title="DW_ALL" title="${_i18n("DW_ALL")}" class="IG_DWSTORY_ALL">${SVG.DOWNLOAD_ALL}</div>`);
  2013. }
  2014.  
  2015. // Modify video volume
  2016. //if(USER_SETTING.MODIFY_VIDEO_VOLUME){
  2017. // $element.find('video').each(function(){
  2018. // $(this).on('play playing', function(){
  2019. // if(!$(this).data('modify')){
  2020. // $(this).attr('data-modify', true);
  2021. // this.volume = VIDEO_VOLUME;
  2022. // logger('(story) Added video event listener #modify');
  2023. // }
  2024. // });
  2025. // });
  2026. //}
  2027.  
  2028. // Make sure to first remove thumbnail button if still exists and story is a picture
  2029. $element.find('img[referrerpolicy]').each(function () {
  2030. $(this).on('load', function () {
  2031. if (!$(this).data('remove-thumbnail')) {
  2032. if ($element.find('.IG_DWSTORY_THUMBNAIL').length === 0) {
  2033. $(this).attr('data-remove-thumbnail', true);
  2034. $('.IG_DWSTORY_THUMBNAIL').remove();
  2035. logger('(story) Manually removing thumbnail button');
  2036. }
  2037. else {
  2038. $(this).attr('data-remove-thumbnail', true);
  2039. logger('(story) Thumbnail button is not present for this picture');
  2040. }
  2041. }
  2042. });
  2043. });
  2044.  
  2045. // Try to use event listener 'timeupdate' in order to detect if story is a video
  2046. //$element.find('video').each(function(){
  2047. // $(this).on('timeupdate',function(){
  2048. // if(!$(this).data('modify-thumbnail')){
  2049. // if($element.find('.IG_DWSTORY_THUMBNAIL').length === 0){
  2050. // $(this).attr('data-modify-thumbnail', true);
  2051. // onStoryThumbnail(false);
  2052. // logger('(story) Manually inserting thumbnail button');
  2053. // }
  2054. // else{
  2055. // $(this).attr('data-modify-thumbnail', true);
  2056. // logger('(story) Thumbnail button already inserted');
  2057. // }
  2058. // }
  2059. // });
  2060. //});
  2061. }
  2062. }
  2063. }
  2064. }
  2065.  
  2066. /**
  2067. * onStoryThumbnail
  2068. * @description Trigger user's story video thumbnail download event or button display event.
  2069. *
  2070. * @param {Boolean} isDownload - Check if it is a download operation
  2071. * @param {Boolean} isForce - Check if downloading directly from API instead of cache
  2072. * @return {void}
  2073. */
  2074. async function onStoryThumbnail(isDownload, isForce) {
  2075. if (isDownload) {
  2076. // Download stories if it is video
  2077. let date = new Date().getTime();
  2078. let timestamp = Math.floor(date / 1000);
  2079. let type = 'jpg';
  2080. let username = $("body > div section._ac0a header._ac0k ._ac0l a + div a").first().text() || location.pathname.split('/').at(2);
  2081. // Download thumbnail
  2082. let targetURL = location.pathname.replace(/\/$/ig, '').split("/").at(-1);
  2083. let videoThumbnailURL = "";
  2084. let mediaId = null;
  2085.  
  2086. updateLoadingBar(true);
  2087.  
  2088. if (USER_SETTING.FORCE_RESOURCE_VIA_MEDIA && !state.tempFetchRateLimit) {
  2089. let userInfo = await getUserId(username);
  2090. let userId = userInfo.user.pk;
  2091. let stories = await getStories(userId);
  2092. let urlID = location.pathname.split('/').filter(s => s.length > 0 && s.match(/^([0-9]{10,})$/)).at(-1);
  2093.  
  2094. stories.data.reels_media[0].items.forEach(item => {
  2095. if (item.id == urlID) {
  2096. mediaId = item.id;
  2097. }
  2098. });
  2099.  
  2100. if (mediaId == null) {
  2101. let $header = getStoryProgress(username);
  2102.  
  2103. $header.each(function (index) {
  2104. if ($(this).children().length > 0) {
  2105. mediaId = stories.data.reels_media[0].items[index].id;
  2106. }
  2107. });
  2108. }
  2109.  
  2110. if (mediaId == null) {
  2111. // appear in from profile page to story page
  2112. $('body > div section:visible div.x1ned7t2.x78zum5 > div').each(function (index) {
  2113. if ($(this).hasClass('x1lix1fw')) {
  2114. if ($(this).children().length > 0) {
  2115. mediaId = stories.data.reels_media[0].items[index].id;
  2116. }
  2117. }
  2118. });
  2119.  
  2120. // appear in from home page to story page
  2121. $('body > div section:visible ._ac0k > ._ac3r > div').each(function (index) {
  2122. if ($(this).children().hasClass('_ac3q')) {
  2123. mediaId = stories.data.reels_media[0].items[index].id;
  2124. }
  2125. });
  2126. }
  2127.  
  2128. if (mediaId == null) {
  2129. mediaId = location.pathname.split('/').filter(s => s.length > 0 && s.match(/^([0-9]{10,})$/)).at(-1);
  2130. }
  2131.  
  2132. let result = await getMediaInfo(mediaId);
  2133.  
  2134. if (USER_SETTING.RENAME_PUBLISH_DATE) {
  2135. timestamp = result.items[0].taken_at;
  2136. }
  2137.  
  2138. if (result.status === 'ok') {
  2139. saveFiles(result.items[0].image_versions2.candidates[0].url, username, "stories", timestamp, 'jpg', mediaId);
  2140.  
  2141. }
  2142. else {
  2143. if (USER_SETTING.USE_BLOB_FETCH_WHEN_MEDIA_RATE_LIMIT) {
  2144. state.tempFetchRateLimit = true;
  2145. onStoryThumbnail(true, isForce);
  2146. }
  2147. else {
  2148. alert('Fetch failed from Media API. API response message: ' + result.message);
  2149. }
  2150.  
  2151. logger(result);
  2152. }
  2153.  
  2154. updateLoadingBar(false);
  2155. return;
  2156. }
  2157.  
  2158. if (state.GL_dataCache.stories[username] && !isForce) {
  2159. logger('Fetch from memory cache:', username);
  2160. state.GL_dataCache.stories[username].data.reels_media[0].items.forEach(item => {
  2161. if (item.id == targetURL) {
  2162. videoThumbnailURL = item.display_url;
  2163. if (USER_SETTING.RENAME_PUBLISH_DATE) {
  2164. timestamp = item.taken_at_timestamp;
  2165. mediaId = item.id;
  2166. }
  2167. }
  2168. });
  2169.  
  2170. if (videoThumbnailURL.length == 0) {
  2171. logger('Memory cache not found, try fetch from API:', username);
  2172. onStoryThumbnail(true, true);
  2173. return;
  2174. }
  2175. }
  2176. else {
  2177. let userInfo = await getUserId(username);
  2178. let userId = userInfo.user.pk;
  2179. let stories = await getStories(userId);
  2180.  
  2181. stories.data.reels_media[0].items.forEach(item => {
  2182. if (item.id == targetURL) {
  2183. videoThumbnailURL = item.display_url;
  2184. if (USER_SETTING.RENAME_PUBLISH_DATE) {
  2185. timestamp = item.taken_at_timestamp;
  2186. mediaId = item.id;
  2187. }
  2188. }
  2189. });
  2190.  
  2191. // GitHub issue #4: thinkpad4
  2192. if (videoThumbnailURL.length == 0) {
  2193. let $header = getStoryProgress(username);
  2194.  
  2195. $header.each(function (index) {
  2196. if ($(this).children().length > 0) {
  2197. videoThumbnailURL = stories.data.reels_media[0].items[index].display_url;
  2198. if (USER_SETTING.RENAME_PUBLISH_DATE) {
  2199. timestamp = stories.data.reels_media[0].items[index].taken_at_timestamp;
  2200. mediaId = stories.data.reels_media[0].items[index].id;
  2201. }
  2202. }
  2203. });
  2204.  
  2205. if (videoThumbnailURL.length == 0) {
  2206. // appear in from profile page to story page
  2207. $('body > div section:visible div.x1ned7t2.x78zum5 > div').each(function (index) {
  2208. if ($(this).hasClass('x1lix1fw')) {
  2209. if ($(this).children().length > 0) {
  2210. videoThumbnailURL = stories.data.reels_media[0].items[index].display_url;
  2211. if (USER_SETTING.RENAME_PUBLISH_DATE) {
  2212. timestamp = stories.data.reels_media[0].items[index].taken_at_timestamp;
  2213. mediaId = stories.data.reels_media[0].items[index].id;
  2214. }
  2215. }
  2216. }
  2217. });
  2218.  
  2219. // appear in from home page to story page
  2220. $('body > div section:visible ._ac0k > ._ac3r > div').each(function (index) {
  2221. if ($(this).children().hasClass('_ac3q')) {
  2222. videoThumbnailURL = stories.data.reels_media[0].items[index].display_url;
  2223. if (USER_SETTING.RENAME_PUBLISH_DATE) {
  2224. timestamp = stories.data.reels_media[0].items[index].taken_at_timestamp;
  2225. mediaId = stories.data.reels_media[0].items[index].id;
  2226. }
  2227. }
  2228. });
  2229. }
  2230. }
  2231. }
  2232.  
  2233. saveFiles(videoThumbnailURL, username, "thumbnail", timestamp, type, mediaId);
  2234. state.tempFetchRateLimit = false;
  2235. updateLoadingBar(false);
  2236. }
  2237. else {
  2238. if ($('body > div div.IG_DWSTORY').parent().find('video[class]').length) {
  2239. // Add the stories download button
  2240. let $element = null;
  2241. // Default detecter (section layout mode)
  2242. if ($('body > div section._ac0a').length > 0) {
  2243. $element = $('body > div section:visible._ac0a');
  2244. }
  2245. // detecter (single story layout mode)
  2246. else {
  2247. $element = $('body > div section:visible > div > div[style]:not([class])');
  2248. $element.css('position', 'relative');
  2249. }
  2250.  
  2251. if ($element.length === 0) {
  2252. $element = $('div[id^="mount"] section > div > a[href="/"]').parent().parent().parent().find('section:visible > div > div[style]:not([class])');
  2253. $element.css('position', 'relative');
  2254. }
  2255.  
  2256. if ($element.length === 0) {
  2257. $element = $('div[id^="mount"] section > div > a[href="/"]').parent().parent().parent().find('section:visible > div div[style]:not([class]) > div:not([data-visualcompletion="loading-state"])');
  2258. $element.css('position', 'relative');
  2259. }
  2260.  
  2261. // Detecter for div layout mode
  2262. if ($element.length === 0) {
  2263. let $$element = $('body > div div:not([hidden]) section:visible > div div[class][style] > div[style]:not([class])');
  2264. let nowSize = 0;
  2265.  
  2266. $$element.each(function () {
  2267. if ($(this).width() > nowSize) {
  2268. nowSize = $(this).width();
  2269. $element = $(this).children('div').first();
  2270. }
  2271. });
  2272. }
  2273.  
  2274.  
  2275. if ($element != null) {
  2276. $element.first().css('position', 'relative');
  2277. $element.first().append(`<div data-ih-locale-title="THUMBNAIL_INTRO" title="${_i18n("THUMBNAIL_INTRO")}" class="IG_DWSTORY_THUMBNAIL">${SVG.THUMBNAIL}</div>`);
  2278. }
  2279.  
  2280. }
  2281. }
  2282. }
  2283.  
  2284. /* untils */
  2285.  
  2286. /**
  2287. * getHighlightStories
  2288. * @description Get a list of all stories in highlight Id.
  2289. *
  2290. * @param {Integer} highlightId
  2291. * @return {Object}
  2292. */
  2293. function getHighlightStories(highlightId) {
  2294. return new Promise((resolve, reject) => {
  2295. let getURL = `https://www.instagram.com/graphql/query/?query_hash=45246d3fe16ccc6577e0bd297a5db1ab&variables=%7B%22highlight_reel_ids%22:%5B%22${highlightId}%22%5D,%22precomposed_overlay%22:false%7D`;
  2296.  
  2297. GM_xmlhttpRequest({
  2298. method: "GET",
  2299. url: getURL,
  2300. onload: function (response) {
  2301. try {
  2302. let obj = JSON.parse(response.response);
  2303. resolve(obj);
  2304. }
  2305. catch (err) {
  2306. logger('getHighlightStories()', 'reject', err.message);
  2307. reject(err);
  2308. }
  2309. },
  2310. onerror: function (err) {
  2311. logger('getHighlightStories()', 'reject', err);
  2312. reject(err);
  2313. }
  2314. });
  2315. });
  2316. }
  2317.  
  2318. /**
  2319. * getStories
  2320. * @description Get a list of all stories in user Id.
  2321. *
  2322. * @param {Integer} userId
  2323. * @return {Object}
  2324. */
  2325. function getStories(userId) {
  2326. return new Promise((resolve, reject) => {
  2327. let getURL = `https://www.instagram.com/graphql/query/?query_hash=15463e8449a83d3d60b06be7e90627c7&variables=%7B%22reel_ids%22:%5B%22${userId}%22%5D,%22precomposed_overlay%22:false%7D`;
  2328.  
  2329. GM_xmlhttpRequest({
  2330. method: "GET",
  2331. url: getURL,
  2332. onload: function (response) {
  2333. try {
  2334. let obj = JSON.parse(response.response);
  2335. logger('getStories()', obj);
  2336. resolve(obj);
  2337. }
  2338. catch (err) {
  2339. logger('getStories()', 'reject', err.message);
  2340. reject(err);
  2341. }
  2342. },
  2343. onerror: function (err) {
  2344. logger('getStories()', 'reject', err);
  2345. reject(err);
  2346. }
  2347. });
  2348. });
  2349. }
  2350.  
  2351. /**
  2352. * getUserId
  2353. * @description Get user's id with username
  2354. *
  2355. * @param {String} username
  2356. * @return {Integer}
  2357. */
  2358. function getUserId(username) {
  2359. return new Promise((resolve, reject) => {
  2360. let getURL = `https://www.instagram.com/web/search/topsearch/?query=${username}`;
  2361.  
  2362. GM_xmlhttpRequest({
  2363. method: "GET",
  2364. url: getURL,
  2365. onload: function (response) {
  2366. // Fix search issue by Discord: sno_w_
  2367. let obj = JSON.parse(response.response);
  2368. let result = null;
  2369. obj.users.forEach(pos => {
  2370. if (pos.user.username?.toLowerCase() === username?.toLowerCase()) {
  2371. result = pos;
  2372. }
  2373. });
  2374.  
  2375. if (result != null) {
  2376. logger('getUserId()', result);
  2377. resolve(result);
  2378. }
  2379. else {
  2380. getUserIdWithAgent(username).then((result) => {
  2381. resolve(result);
  2382. // eslint-disable-next-line no-unused-vars
  2383. }).catch((err) => {
  2384. alert("Can not find user info from getUserId()");
  2385. });
  2386. }
  2387. },
  2388. onerror: function (err) {
  2389. logger('getUserId()', 'reject', err);
  2390. reject(err);
  2391. }
  2392. });
  2393. });
  2394. }
  2395.  
  2396. /**
  2397. * getUserIdWithAgent
  2398. * @description Get user's id with username
  2399. *
  2400. * @param {String} username
  2401. * @return {Integer}
  2402. */
  2403. function getUserIdWithAgent(username) {
  2404. return new Promise((resolve, reject) => {
  2405. let getURL = `https://i.instagram.com/api/v1/users/web_profile_info/?username=${username}`;
  2406.  
  2407. GM_xmlhttpRequest({
  2408. method: "GET",
  2409. url: getURL,
  2410. headers: {
  2411. 'X-IG-App-ID': getAppID()
  2412. },
  2413. onload: function (response) {
  2414. try {
  2415. let obj = JSON.parse(response.response);
  2416. let hasUser = obj?.data?.user;
  2417.  
  2418. if (hasUser != null) {
  2419. let userInfo = obj?.data;
  2420. userInfo.user.pk = userInfo.user.id;
  2421. logger('getUserIdWithAgent()', obj);
  2422. resolve(userInfo);
  2423. }
  2424. else {
  2425. logger('getUserIdWithAgent()', 'reject', 'undefined');
  2426. reject('undefined');
  2427. }
  2428. }
  2429. catch (err) {
  2430. logger('getUserIdWithAgent()', 'reject', err.message);
  2431. reject(err);
  2432. }
  2433. },
  2434. onerror: function (err) {
  2435. logger('getUserIdWithAgent()', 'reject', err);
  2436. reject(err);
  2437. }
  2438. });
  2439. });
  2440. }
  2441.  
  2442. /**
  2443. * getUserHighSizeProfile
  2444. * @description Get user's high quality avatar image.
  2445. *
  2446. * @param {Integer} userId
  2447. * @return {String}
  2448. */
  2449. function getUserHighSizeProfile(userId) {
  2450. return new Promise((resolve, reject) => {
  2451. let getURL = `https://i.instagram.com/api/v1/users/${userId}/info/`;
  2452.  
  2453. GM_xmlhttpRequest({
  2454. method: "GET",
  2455. url: getURL,
  2456. headers: {
  2457. 'User-Agent': 'Mozilla/5.0 (Linux; Android 10; Pixel 7 XL)Build/RP1A.20845.002; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/5.0 Chrome/117.0.5938.60 Mobile Safari/537.36 Instagram 307.0.0.34.111'
  2458. },
  2459. onload: function (response) {
  2460. try {
  2461. let obj = JSON.parse(response.response);
  2462. if (obj.status !== 'ok') {
  2463. logger('getUserHighSizeProfile()', 'reject', obj);
  2464. reject('faild');
  2465. }
  2466. else {
  2467. logger('getUserHighSizeProfile()', obj);
  2468. resolve(obj.user.hd_profile_pic_url_info?.url);
  2469. }
  2470. }
  2471. catch (err) {
  2472. logger('getUserHighSizeProfile()', 'reject', err);
  2473. reject(err);
  2474. }
  2475. },
  2476. onerror: function (err) {
  2477. logger('getUserHighSizeProfile()', 'reject', err);
  2478. reject(err);
  2479. }
  2480. });
  2481. });
  2482. }
  2483.  
  2484. /**
  2485. * getPostOwner
  2486. * @description Get post's author with post shortcode
  2487. *
  2488. * @param {String} postPath
  2489. * @return {String}
  2490. */
  2491. function getPostOwner(postPath) {
  2492. return new Promise((resolve, reject) => {
  2493. if (!postPath) reject("NOPATH");
  2494. let postShortCode = postPath;
  2495. let getURL = `https://www.instagram.com/graphql/query/?query_hash=2c4c2e343a8f64c625ba02b2aa12c7f8&variables=%7B%22shortcode%22:%22${postShortCode}%22}`;
  2496.  
  2497. GM_xmlhttpRequest({
  2498. method: "GET",
  2499. url: getURL,
  2500. onload: function (response) {
  2501. try {
  2502. let obj = JSON.parse(response.response);
  2503. logger('getPostOwner()', obj);
  2504. resolve(obj.data.shortcode_media.owner.username);
  2505. }
  2506. catch (err) {
  2507. logger('getPostOwner()', 'reject', err.message);
  2508. reject(err);
  2509. }
  2510. },
  2511. onerror: function (err) {
  2512. logger('getPostOwner()', 'reject', err);
  2513. reject(err);
  2514. }
  2515. });
  2516. });
  2517. }
  2518.  
  2519. /**
  2520. * getBlobMedia
  2521. * @description Get list of all media files in post with post shortcode
  2522. *
  2523. * @param {String} postPath
  2524. * @return {Object}
  2525. */
  2526. function getBlobMedia(postPath) {
  2527. return new Promise((resolve, reject) => {
  2528. if (!postPath) reject("NOPATH");
  2529. let postShortCode = postPath;
  2530. let getURL = `https://www.instagram.com/graphql/query/?query_hash=2c4c2e343a8f64c625ba02b2aa12c7f8&variables=%7B%22shortcode%22:%22${postShortCode}%22}`;
  2531.  
  2532. GM_xmlhttpRequest({
  2533. method: "GET",
  2534. url: getURL,
  2535. headers: {
  2536. "User-Agent": "Mozilla/5.0 (Linux; Android 10; Pixel 7 XL)Build/RP1A.20845.002; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/5.0 Chrome/117.0.5938.60 Mobile Safari/537.36 Instagram 307.0.0.34.111"
  2537. },
  2538. onload: function (response) {
  2539. try {
  2540. let obj = JSON.parse(response.response);
  2541. logger(obj);
  2542.  
  2543. if (obj.status === 'fail') {
  2544. // alert(`Request failed with API response:\n${obj.message}: ${obj.feedback_message}`);
  2545. logger('Request with:', 'getBlobMediaWithQuery()', postShortCode);
  2546. getBlobMediaWithQueryID(postShortCode).then((res) => {
  2547. resolve({ type: 'query_id', data: res.xdt_api__v1__media__shortcode__web_info.items[0] });
  2548. }).catch((err) => {
  2549. reject(err);
  2550. })
  2551. }
  2552. else {
  2553. resolve({ type: 'query_hash', data: obj.data });
  2554. }
  2555. }
  2556. catch (err) {
  2557. logger('getBlobMedia()', 'reject', err.message);
  2558. reject(err);
  2559. }
  2560. },
  2561. onerror: function (err) {
  2562. logger('getBlobMedia()', 'reject', err);
  2563. reject(err);
  2564. }
  2565. });
  2566. });
  2567. }
  2568.  
  2569. /**
  2570. * getBlobMediaWithQueryID
  2571. * @description Get list of all media files in post with post shortcode
  2572. *
  2573. * @param {String} postPath
  2574. * @return {Object}
  2575. */
  2576. function getBlobMediaWithQueryID(postPath) {
  2577. return new Promise((resolve, reject) => {
  2578. if (!postPath) reject("NOPATH");
  2579. let postShortCode = postPath;
  2580. let getURL = `https://www.instagram.com/graphql/query/?query_id=9496392173716084&variables={%22shortcode%22:%22${postShortCode}%22,%22__relay_internal__pv__PolarisFeedShareMenurelayprovider%22:true,%22__relay_internal__pv__PolarisIsLoggedInrelayprovider%22:true}`;
  2581.  
  2582. GM_xmlhttpRequest({
  2583. method: "GET",
  2584. url: getURL,
  2585. headers: {
  2586. "User-Agent": "Mozilla/5.0 (Linux; Android 10; Pixel 7 XL)Build/RP1A.20845.002; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/5.0 Chrome/117.0.5938.60 Mobile Safari/537.36 Instagram 307.0.0.34.111",
  2587. 'X-IG-App-ID': getAppID()
  2588. },
  2589. onload: function (response) {
  2590. try {
  2591. let obj = JSON.parse(response.response);
  2592. logger(obj);
  2593.  
  2594. if (obj.status === 'fail') {
  2595. alert(`getBlobMediaWithQueryID(): Request failed with API response:\n${obj.message}: ${obj.feedback_message}`);
  2596. logger(`Request failed with API response ${obj.message}: ${obj.feedback_message}`);
  2597. reject(response);
  2598. }
  2599. else {
  2600. logger('getBlobMediaWithQueryID()', obj.data);
  2601. resolve(obj.data);
  2602. }
  2603. }
  2604. catch (err) {
  2605. logger('getBlobMediaWithQueryID()', 'reject', err.message);
  2606. reject(err);
  2607. }
  2608. },
  2609. onerror: function (err) {
  2610. logger('getBlobMediaWithQueryID()', 'reject', err);
  2611. reject(err);
  2612. }
  2613. });
  2614. });
  2615. }
  2616.  
  2617. /**
  2618. * getMediaInfo
  2619. * @description Get Instagram Media object
  2620. *
  2621. * @param {String} mediaId
  2622. * @return {Object}
  2623. */
  2624. function getMediaInfo(mediaId) {
  2625. return new Promise((resolve, reject) => {
  2626. let getURL = `https://i.instagram.com/api/v1/media/${mediaId}/info/`;
  2627.  
  2628. if (mediaId == null) {
  2629. alert("Can not call Media API because of the media id is invalid.");
  2630. logger('getMediaInfo()', 'reject', 'Can not call Media API because of the media id is invalid.');
  2631.  
  2632. updateLoadingBar(false);
  2633. reject(-1);
  2634. return;
  2635. }
  2636. if (getAppID() == null) {
  2637. alert("Can not call Media API because of the app id is invalid.");
  2638. logger('getMediaInfo()', 'reject', 'Can not call Media API because of the app id is invalid.');
  2639. updateLoadingBar(false);
  2640. reject(-1);
  2641. return;
  2642. }
  2643.  
  2644. GM_xmlhttpRequest({
  2645. method: "GET",
  2646. url: getURL,
  2647. headers: {
  2648. "User-Agent": window.navigator.userAgent,
  2649. "Accept": "*/*",
  2650. 'X-IG-App-ID': getAppID()
  2651. },
  2652. onload: function (response) {
  2653. if (response.finalUrl == getURL) {
  2654. let obj = JSON.parse(response.response);
  2655. logger('getMediaInfo()', obj);
  2656. resolve(obj);
  2657. }
  2658. else {
  2659. let finalURL = new URL(response.finalUrl);
  2660. if (finalURL.pathname.startsWith('/accounts/login')) {
  2661. logger('getMediaInfo()', 'reject', 'The account must be logged in to access Media API.');
  2662. alert("The account must be logged in to access Media API.");
  2663. }
  2664. else {
  2665. logger('getMediaInfo()', 'reject', 'Unable to retrieve content because the API was redirected to "' + response.finalUrl + '"');
  2666. alert('Unable to retrieve content because the API was redirected to "' + response.finalUrl + '"');
  2667. }
  2668. updateLoadingBar(false);
  2669. reject(-1);
  2670. }
  2671. },
  2672. onerror: function (err) {
  2673. logger('getMediaInfo()', 'reject', err);
  2674. resolve(err);
  2675. }
  2676. });
  2677. });
  2678. }
  2679.  
  2680. /**
  2681. * getStoryId
  2682. * @description Obtain the media id through the resource URL.
  2683. *
  2684. * @param {string} url
  2685. * @return {string}
  2686. */
  2687. function getStoryId(url) {
  2688. let obj = new URL(url);
  2689. let base64 = obj?.searchParams?.get('ig_cache_key')?.split('.').at(0);
  2690. if (base64) {
  2691. return atob(base64);
  2692. }
  2693. else {
  2694. return null;
  2695. }
  2696. }
  2697.  
  2698. /**
  2699. * getAppID
  2700. * @description Get Instagram App ID
  2701. *
  2702. * @return {?integer}
  2703. */
  2704. function getAppID() {
  2705. let result = null;
  2706. $('script[type="application/json"]').each(function () {
  2707. const regexp = /"APP_ID":"([0-9]+)"/ig;
  2708. const matcher = $(this).text().match(regexp);
  2709. if (matcher != null && result == null) {
  2710. result = [...$(this).text().matchAll(regexp)];
  2711. }
  2712. })
  2713.  
  2714. return (result) ? result.at(0).at(-1) : null;
  2715. }
  2716.  
  2717.  
  2718. /**
  2719. * updateLoadingBar
  2720. * @description Update loading state
  2721. *
  2722. * @param {Boolean} isLoading - Check if loading state
  2723. * @return {void}
  2724. */
  2725. function updateLoadingBar(isLoading) {
  2726. if (isLoading) {
  2727. $('div[id^="mount"] > div > div > div:first').removeClass('x1s85apg');
  2728. $('div[id^="mount"] > div > div > div:first').css('z-index', '20000');
  2729. }
  2730. else {
  2731. $('div[id^="mount"] > div > div > div:first').addClass('x1s85apg');
  2732. $('div[id^="mount"] > div > div > div:first').css('z-index', '');
  2733. }
  2734. }
  2735.  
  2736. /**
  2737. * getStoryProgress
  2738. * @description Get the story progress of the username (post several stories)
  2739. *
  2740. * @param {String} username - Get progress of username
  2741. * @return {Object}
  2742. */
  2743. function getStoryProgress(username) {
  2744. let $header = $('body > div section:visible a[href^="/' + (username) + '"] span').filter(function () {
  2745. return $(this).children().length === 0 && $(this).find('svg').length === 0 && $(this).text()?.toLowerCase() === username?.toLowerCase();
  2746. }).parents('div:not([class]):not([style])').filter(function () {
  2747. return $(this).text()?.toLowerCase() !== username?.toLowerCase()
  2748. }).filter(function () {
  2749. return $(this).children().length > 1
  2750. }).first();
  2751.  
  2752. if ($header.length === 0) {
  2753. $header = $('body > div section:visible a[href^="/' + (username) + '"]').filter(function () {
  2754. return $(this).find('img').length > 0
  2755. }).parents('div:not([class]):not([style])').filter(function () {
  2756. return $(this).text()?.toLowerCase() !== username?.toLowerCase()
  2757. }).filter(function () {
  2758. return $(this).children().length > 1
  2759. }).first();
  2760. }
  2761.  
  2762. return $header.children().filter(function () {
  2763. return $(this).height() < 10
  2764. }).first().children();
  2765. }
  2766.  
  2767. /**
  2768. * setDownloadProgress
  2769. * @description Show and set download circle progress
  2770. *
  2771. * @param {Integer} now
  2772. * @param {Integer} total
  2773. * @return {Void}
  2774. */
  2775. function setDownloadProgress(now, total) {
  2776. if ($('.circle_wrapper').length) {
  2777. $('.circle_wrapper span').text(`${now}/${total}`);
  2778.  
  2779. if (now >= total) {
  2780. $('.circle_wrapper').fadeOut(250, function () {
  2781. $(this).remove();
  2782. });
  2783. }
  2784. }
  2785. else {
  2786. $('body').append(`<div class="circle_wrapper"><circle></circle><span>${now}/${total}</span></div>`);
  2787. }
  2788. }
  2789.  
  2790.  
  2791. /**
  2792. * IG_createDM
  2793. * @description A dialog showing a list of all media files in the post
  2794. *
  2795. * @param {Boolean} hasHidden
  2796. * @param {Boolean} hasCheckbox
  2797. * @return {void}
  2798. */
  2799. function IG_createDM(hasHidden, hasCheckbox) {
  2800. let isHidden = (hasHidden) ? "hidden" : "";
  2801. $('body').append('<div class="IG_POPUP_DIG ' + isHidden + '"><div class="IG_POPUP_DIG_BG"></div><div class="IG_POPUP_DIG_MAIN"><div class="IG_POPUP_DIG_TITLE"></div><div class="IG_POPUP_DIG_BODY"></div></div></div>');
  2802. $('.IG_POPUP_DIG .IG_POPUP_DIG_MAIN .IG_POPUP_DIG_TITLE').append(`<div style="position:relative;min-height:36px;text-align:center;margin-bottom: 7px;"><div style="position:absolute;left:0px;line-height: 18px;"><kbd>Alt</kbd>+<kbd>Q</kbd> [<span data-ih-locale="CLOSE">${_i18n("CLOSE")}</span>]</div><div style="line-height: 18px;">IG Helper v${GM_info.script.version}</div><div id="post_info" style="line-height: 14px;font-size:14px;">Post ID: <span id="article-id"></span></div><div class="IG_POPUP_DIG_BTN">${SVG.CLOSE}</div></div>`);
  2803.  
  2804. if (hasCheckbox) {
  2805. $('.IG_POPUP_DIG .IG_POPUP_DIG_MAIN .IG_POPUP_DIG_TITLE').append(`<div style="text-align: center;" id="button_group"></div>`);
  2806. $('.IG_POPUP_DIG .IG_POPUP_DIG_MAIN .IG_POPUP_DIG_TITLE > div#button_group').append(`<button id="batch_download_selected" data-ih-locale="BATCH_DOWNLOAD_SELECTED">${_i18n('BATCH_DOWNLOAD_SELECTED')}</button>`);
  2807. $('.IG_POPUP_DIG .IG_POPUP_DIG_MAIN .IG_POPUP_DIG_TITLE > div#button_group').append(`<button id="batch_download_direct" data-ih-locale="BATCH_DOWNLOAD_DIRECT">${_i18n('BATCH_DOWNLOAD_DIRECT')}</button>`);
  2808. $('.IG_POPUP_DIG .IG_POPUP_DIG_MAIN .IG_POPUP_DIG_TITLE').append(`<label class="checkbox"><input value="yes" type="checkbox" /><span data-ih-locale="ALL_CHECK">${_i18n('ALL_CHECK')}</span></label>`);
  2809. }
  2810. }
  2811.  
  2812. /**
  2813. * IG_setDM
  2814. * @description Set a dialog status
  2815. *
  2816. * @param {Boolean} hasHidden
  2817. * @return {void}
  2818. */
  2819. function IG_setDM(hasHidden) {
  2820. if ($('.IG_POPUP_DIG').length) {
  2821. if (hasHidden) {
  2822. $('.IG_POPUP_DIG').addClass("hidden");
  2823. }
  2824. else {
  2825. $('.IG_POPUP_DIG').removeClass("hidden");
  2826. }
  2827. }
  2828. }
  2829.  
  2830. /**
  2831. * saveFiles
  2832. * @description Download the specified media URL to the computer
  2833. *
  2834. * @param {String} downloadLink
  2835. * @param {String} username
  2836. * @param {String} sourceType
  2837. * @param {Integer} timestamp
  2838. * @param {String} filetype
  2839. * @param {String} shortcode
  2840. * @return {Promise}
  2841. */
  2842. function saveFiles(downloadLink, username, sourceType, timestamp, filetype, shortcode) {
  2843. return new Promise((resolve) => {
  2844. setTimeout(() => {
  2845. updateLoadingBar(true);
  2846. fetch(downloadLink).then(res => {
  2847. return res.blob().then(dwel => {
  2848. updateLoadingBar(false);
  2849. createSaveFileElement(downloadLink, dwel, username, sourceType, timestamp, filetype, shortcode);
  2850.  
  2851. resolve(true);
  2852. });
  2853. });
  2854. }, 50);
  2855. });
  2856. }
  2857.  
  2858. /**
  2859. * createSaveFileElement
  2860. * @description Download the specified media with link element
  2861. *
  2862. * @param {String} downloadLink
  2863. * @param {Object} object
  2864. * @param {String} username
  2865. * @param {String} sourceType
  2866. * @param {Integer} timestamp
  2867. * @param {String} filetype
  2868. * @param {String} shortcode
  2869. * @return {void}
  2870. */
  2871. function createSaveFileElement(downloadLink, object, username, sourceType, timestamp, filetype, shortcode) {
  2872. timestamp = parseInt(timestamp.toString().padEnd(13, '0'));
  2873.  
  2874. if (USER_SETTING.RENAME_PUBLISH_DATE) {
  2875. timestamp = parseInt(timestamp.toString().padEnd(13, '0'));
  2876. }
  2877.  
  2878. const date = new Date(timestamp);
  2879.  
  2880. const a = document.createElement("a");
  2881. const original_name = new URL(downloadLink).pathname.split('/').at(-1).split('.').slice(0, -1).join('.');
  2882. const year = date.getFullYear().toString();
  2883. const month = (date.getMonth() + 1).toString().padStart(2, '0');
  2884. const day = date.getDate().toString().padStart(2, '0');
  2885. const hour = date.getHours().toString().padStart(2, '0');
  2886. const minute = date.getMinutes().toString().padStart(2, '0');
  2887. const second = date.getSeconds().toString().padStart(2, '0');
  2888.  
  2889. var filename = state.fileRenameFormat.toUpperCase();
  2890. var format_shortcode = shortcode ?? "";
  2891. var replacements = {
  2892. '%USERNAME%': username,
  2893. '%SOURCE_TYPE%': sourceType,
  2894. '%SHORTCODE%': format_shortcode,
  2895. '%YEAR%': year,
  2896. '%2-YEAR%': year.substr(-2),
  2897. '%MONTH%': month,
  2898. '%DAY%': day,
  2899. '%HOUR%': hour,
  2900. '%MINUTE%': minute,
  2901. '%SECOND%': second,
  2902. '%ORIGINAL_NAME%': original_name,
  2903. '%ORIGINAL_NAME_FIRST%': original_name.split('_').at(0)
  2904. };
  2905.  
  2906. // eslint-disable-next-line no-useless-escape
  2907. filename = filename.replace(/%[\w\-]+%/g, function (str) {
  2908. return replacements[str] || str;
  2909. });
  2910.  
  2911. const originally = username + '_' + original_name + '.' + filetype;
  2912.  
  2913. a.href = URL.createObjectURL(object);
  2914. a.setAttribute("download", (USER_SETTING.AUTO_RENAME) ? filename + '.' + filetype : originally);
  2915. a.click();
  2916. a.remove();
  2917. }
  2918.  
  2919. /**
  2920. * triggerLinkElement
  2921. * @description Trigger the link element to start downloading the resource
  2922. *
  2923. * @param {Object} element
  2924. * @return {void}
  2925. */
  2926. async function triggerLinkElement(element, isPreview) {
  2927. let date = new Date().getTime();
  2928. let timestamp = Math.floor(date / 1000);
  2929. let username = ($(element).attr('data-username')) ? $(element).attr('data-username') : state.GL_username;
  2930.  
  2931. if (!username && $(element).attr('data-path')) {
  2932. logger('catching owner name from shortcode:', $(element).attr('data-href'));
  2933. username = await getPostOwner($(element).attr('data-path')).catch(err => {
  2934. logger('get username failed, replace with default string, error message:', err.message);
  2935. });
  2936.  
  2937. if (username == null) {
  2938. username = "NONE";
  2939. }
  2940. }
  2941.  
  2942. if (USER_SETTING.RENAME_PUBLISH_DATE && $(element).attr('datetime')) {
  2943. timestamp = parseInt($(element).attr('datetime'));
  2944. }
  2945.  
  2946. if (USER_SETTING.FORCE_RESOURCE_VIA_MEDIA) {
  2947. updateLoadingBar(true);
  2948. let result = await getMediaInfo($(element).attr('media-id'));
  2949. updateLoadingBar(false);
  2950.  
  2951. if (result.status === 'ok') {
  2952. var resource_url = null;
  2953. if (result.items[0].video_versions) {
  2954. resource_url = result.items[0].video_versions[0].url;
  2955. }
  2956. else {
  2957. result.items[0].image_versions2.candidates.sort(function (a, b) {
  2958. let aSTP = new URL(a.url).searchParams.get('stp');
  2959. let bSTP = new URL(b.url).searchParams.get('stp');
  2960.  
  2961. if (aSTP && bSTP) {
  2962. if (aSTP.length > bSTP.length) return 1;
  2963. if (aSTP.length < bSTP.length) return -1;
  2964. }
  2965. else {
  2966. if (a.width < b.width) return 1;
  2967. if (a.width > b.width) return -1;
  2968. }
  2969.  
  2970. return 0;
  2971. });
  2972.  
  2973. resource_url = result.items[0].image_versions2.candidates[0].url;
  2974. }
  2975.  
  2976. if (isPreview) {
  2977. let urlObj = new URL(resource_url);
  2978. urlObj.host = 'scontent.cdninstagram.com';
  2979.  
  2980. openNewTab(urlObj.href);
  2981. }
  2982. else {
  2983. saveFiles(resource_url, username, $(element).attr('data-name'), timestamp, $(element).attr('data-type'), $(element).attr('data-path'));
  2984. }
  2985. }
  2986. else {
  2987. if (USER_SETTING.USE_BLOB_FETCH_WHEN_MEDIA_RATE_LIMIT) {
  2988. if (isPreview) {
  2989. let urlObj = new URL($(element).attr('data-href'));
  2990. urlObj.host = 'scontent.cdninstagram.com';
  2991.  
  2992. openNewTab(urlObj.href);
  2993. }
  2994. else {
  2995. saveFiles($(element).attr('data-href'), username, $(element).attr('data-name'), timestamp, $(element).attr('data-type'), $(element).attr('data-path'));
  2996. }
  2997. }
  2998. else {
  2999. alert('Fetch failed from Media API. API response message: ' + result.message);
  3000. }
  3001. logger(result);
  3002. }
  3003. }
  3004. else {
  3005. saveFiles($(element).attr('data-href'), username, $(element).attr('data-name'), timestamp, $(element).attr('data-type'), $(element).attr('data-path'));
  3006. }
  3007. }
  3008.  
  3009.  
  3010. /**
  3011. * registerMenuCommand
  3012. * @description register script menu command
  3013. *
  3014. * @return {void}
  3015. */
  3016. function registerMenuCommand() {
  3017. for (let id of state.registerMenuIds) {
  3018. logger('GM_unregisterMenuCommand', id);
  3019. GM_unregisterMenuCommand(id);
  3020. }
  3021.  
  3022. state.registerMenuIds.push(GM_registerMenuCommand(_i18n('SETTING'), () => {
  3023. showSetting();
  3024. }, {
  3025. accessKey: "w"
  3026. }));
  3027.  
  3028. state.registerMenuIds.push(GM_registerMenuCommand(_i18n('DONATE'), () => {
  3029. GM_openInTab("https://ko-fi.com/snkoarashi", { active: true });
  3030. }, {
  3031. accessKey: "d"
  3032. }));
  3033.  
  3034. state.registerMenuIds.push(GM_registerMenuCommand(_i18n('DEBUG'), () => {
  3035. showDebugDOM();
  3036. }, {
  3037. accessKey: "z"
  3038. }));
  3039.  
  3040. state.registerMenuIds.push(GM_registerMenuCommand(_i18n('FEEDBACK'), () => {
  3041. showFeedbackDOM();
  3042. }, {
  3043. accessKey: "f"
  3044. }));
  3045.  
  3046. state.registerMenuIds.push(GM_registerMenuCommand(_i18n('CHECK_UPDATE_MENU'), () => {
  3047. callNotification();
  3048. }, {
  3049. accessKey: "c"
  3050. }));
  3051.  
  3052. state.registerMenuIds.push(GM_registerMenuCommand(_i18n('RELOAD_SCRIPT'), () => {
  3053. reloadScript();
  3054. }, {
  3055. accessKey: "r"
  3056. }));
  3057. }
  3058.  
  3059. /**
  3060. * checkingScriptUpdate
  3061. * @description Check if there is a new version of the script and push notification
  3062. *
  3063. * @param {Integer} interval
  3064. * @return {void}
  3065. */
  3066. function checkingScriptUpdate(interval) {
  3067. if (!USER_SETTING.CHECK_UPDATE) return;
  3068.  
  3069. const check_timestamp = GM_getValue('G_CHECK_TIMESTAMP') ?? new Date().getTime();
  3070. const now_time = new Date().getTime();
  3071.  
  3072. if (now_time > (parseInt(check_timestamp) + (interval * 1000))) {
  3073. GM_setValue('G_CHECK_TIMESTAMP', new Date().getTime());
  3074. callNotification();
  3075. }
  3076. }
  3077.  
  3078. /**
  3079. * callNotification
  3080. * @description call desktop notification by browser
  3081. *
  3082. * @return {void}
  3083. */
  3084. function callNotification() {
  3085. const currentVersion = GM_info.script.version;
  3086. const remoteScriptURL = 'https://raw.githubusercontent.com/SN-Koarashi/ig-helper/refs/heads/master/main.js';
  3087.  
  3088. GM_xmlhttpRequest({
  3089. method: "GET",
  3090. url: remoteScriptURL,
  3091. onload: function (response) {
  3092. const remoteScript = response.responseText;
  3093. const match = remoteScript.match(/\/\/\s+@version\s+([0-9.\-a-zA-Z]+)/i);
  3094.  
  3095. if (match && match[1]) {
  3096. const remoteVersion = match[1];
  3097. logger('Current version: ', currentVersion, '|', 'Remote version: ', remoteVersion);
  3098.  
  3099. if (remoteVersion !== currentVersion) {
  3100. GM_notification({
  3101. text: _i18n("NOTICE_UPDATE_CONTENT"),
  3102. title: _i18n("NOTICE_UPDATE_TITLE"),
  3103. tag: 'ig_helper_notice',
  3104. highlight: true,
  3105. timeout: 5000,
  3106. zombieTimeout: 5000,
  3107. image: "https://upload.wikimedia.org/wikipedia/commons/thumb/a/a5/Instagram_icon.png/64px-Instagram_icon.png",
  3108. onclick: (event) => {
  3109. event?.preventDefault();
  3110. var w = GM_openInTab(GM_info.script.downloadURL);
  3111. setTimeout(() => {
  3112. w.close();
  3113. }, 250);
  3114. }
  3115. });
  3116. } else {
  3117. logger('there is no new update');
  3118. }
  3119. } else {
  3120. console.error('Could not find version in the remote script.');
  3121. }
  3122. }
  3123. });
  3124. }
  3125.  
  3126. /**
  3127. * showSetting
  3128. * @description Show script settings window
  3129. *
  3130. * @return {void}
  3131. */
  3132. function showSetting() {
  3133. $('.IG_POPUP_DIG').remove();
  3134. IG_createDM();
  3135. $('.IG_POPUP_DIG #post_info').text('Preference Settings');
  3136.  
  3137. $('.IG_POPUP_DIG .IG_POPUP_DIG_TITLE > div').append('<select id="langSelect"></select><div style="font-size: 12px;">Some texts are machine-translated and may be inaccurate; translation contributions are welcome on GitHub.</div>');
  3138.  
  3139. for (let o in locale_manifest) {
  3140. $('.IG_POPUP_DIG .IG_POPUP_DIG_TITLE > div #langSelect').append(`<option value="${o}" ${(state.lang == o) ? 'selected' : ''}>${locale_manifest[o]}</option>`);
  3141. }
  3142.  
  3143. for (let name in USER_SETTING) {
  3144. $('.IG_POPUP_DIG .IG_POPUP_DIG_BODY').append(`<label class="globalSettings${(CHILD_NODES.includes(name)) ? ' child' : ''}" title="${_i18n(name + '_INTRO')}" data-ih-locale-title="${name + '_INTRO'}"><span data-ih-locale="${name}">${_i18n(name)}</span> <input id="${name}" value="box" type="checkbox" ${(USER_SETTING[name] === true) ? 'checked' : ''}><div class="chbtn"><div class="rounds"></div></div></label>`);
  3145.  
  3146. if (name === 'MODIFY_VIDEO_VOLUME') {
  3147. $('.IG_POPUP_DIG .IG_POPUP_DIG_BODY input[id="' + name + '"]').parent('label').on('contextmenu', function (e) {
  3148. e.preventDefault();
  3149. if ($(this).find('#tempWrapper').length === 0) {
  3150. $(this).append('<div id="tempWrapper"></div>');
  3151. $(this).children('#tempWrapper').append('<input value="' + state.videoVolume + '" type="range" min="0" max="1" step="0.05" />');
  3152. $(this).children('#tempWrapper').append('<input value="' + state.videoVolume + '" step="0.05" type="number" />');
  3153. $(this).children('#tempWrapper').append(`<div class="IG_POPUP_DIG_BTN">${SVG.CLOSE}</div>`);
  3154. }
  3155. });
  3156. }
  3157.  
  3158. if (name === 'AUTO_RENAME') {
  3159. $('.IG_POPUP_DIG .IG_POPUP_DIG_BODY input[id="' + name + '"]').parent('label').on('contextmenu', function (e) {
  3160. e.preventDefault();
  3161. if ($(this).find('#tempWrapper').length === 0) {
  3162. $(this).append('<div id="tempWrapper"></div>');
  3163.  
  3164. $(this).children('#tempWrapper').append('<input id="date_format" value="' + state.fileRenameFormat + '" />');
  3165. $(this).children('#tempWrapper').append(`<div class="IG_POPUP_DIG_BTN">${SVG.CLOSE}</div>`);
  3166. }
  3167. });
  3168. }
  3169. }
  3170. }
  3171.  
  3172. /**
  3173. * showDebugDOM
  3174. * @description Show full DOM tree
  3175. *
  3176. * @return {void}
  3177. */
  3178. function showDebugDOM() {
  3179. $('.IG_POPUP_DIG').remove();
  3180. IG_createDM();
  3181. $('.IG_POPUP_DIG #post_info').text('IG Debug DOM Tree');
  3182.  
  3183. $('.IG_POPUP_DIG .IG_POPUP_DIG_BODY').append(`<textarea style="font-family: monospace;width:100%;box-sizing: border-box;height:300px;background: transparent;" readonly></textarea>`);
  3184. $('.IG_POPUP_DIG .IG_POPUP_DIG_BODY').append(`<span style="display:block;text-align:center;">`);
  3185. $('.IG_POPUP_DIG .IG_POPUP_DIG_BODY span').append(`<button style="margin: 3px;" class="IG_DISPLAY_DOM_TREE"><a>${_i18n('SHOW_DOM_TREE')}</a></button>`);
  3186. $('.IG_POPUP_DIG .IG_POPUP_DIG_BODY span').append(`<button style="margin: 3px;" class="IG_SELECT_DOM_TREE"><a>${_i18n('SELECT_AND_COPY')}</a></button>`);
  3187. $('.IG_POPUP_DIG .IG_POPUP_DIG_BODY span').append(`<button style="margin: 3px;" class="IG_DOWNLOAD_DOM_TREE"><a>${_i18n('DOWNLOAD_DOM_TREE')}</a></button><br/>`);
  3188. $('.IG_POPUP_DIG .IG_POPUP_DIG_BODY span').append(`<button style="margin: 3px;" class="IG_REPORT_GITHUB"><a href="https://github.com/SN-Koarashi/ig-helper/issues" target="_blank">${_i18n('REPORT_GITHUB')}</a></button>`);
  3189. $('.IG_POPUP_DIG .IG_POPUP_DIG_BODY span').append(`<button style="margin: 3px;" class="IG_REPORT_DISCORD"><a href="https://discord.gg/q3KT4hdq8x" target="_blank">${_i18n('REPORT_DISCORD')}</a></button>`);
  3190. }
  3191.  
  3192. /**
  3193. * showFeedbackDOM
  3194. * @description Show feedback options
  3195. *
  3196. * @return {void}
  3197. */
  3198. function showFeedbackDOM() {
  3199. $('.IG_POPUP_DIG').remove();
  3200. IG_createDM();
  3201. $('.IG_POPUP_DIG #post_info').text('Feedback Options');
  3202.  
  3203. $('.IG_POPUP_DIG .IG_POPUP_DIG_BODY').append(`<span style="display:block;text-align:center;">`);
  3204. $('.IG_POPUP_DIG .IG_POPUP_DIG_BODY span').append(`<button style="margin: 3px;" class="IG_REPORT_FORK"><a href="https://gf.qytechs.cn/en/scripts/404535-ig-helper/feedback" target="_blank">${_i18n('REPORT_FORK')}</a></button>`);
  3205. $('.IG_POPUP_DIG .IG_POPUP_DIG_BODY span').append(`<button style="margin: 3px;" class="IG_REPORT_GITHUB"><a href="https://github.com/SN-Koarashi/ig-helper/issues" target="_blank">${_i18n('REPORT_GITHUB')}</a></button>`);
  3206. $('.IG_POPUP_DIG .IG_POPUP_DIG_BODY span').append(`<button style="margin: 3px;" class="IG_REPORT_DISCORD"><a href="https://discord.gg/q3KT4hdq8x" target="_blank">${_i18n('REPORT_DISCORD')}</a></button>`);
  3207. }
  3208.  
  3209. /**
  3210. * openNewTab
  3211. * @description Open url in new tab
  3212. *
  3213. * @param {String} link
  3214. * @return {void}
  3215. */
  3216. function openNewTab(link) {
  3217. var a = document.createElement('a');
  3218. a.href = link;
  3219. a.target = '_blank';
  3220.  
  3221. document.body.appendChild(a);
  3222. a.click();
  3223. a.remove();
  3224. }
  3225.  
  3226. /**
  3227. * reloadScript
  3228. * @description Re-register main timer
  3229. *
  3230. * @return {void}
  3231. */
  3232. function reloadScript() {
  3233. clearInterval(state.GL_repeat);
  3234.  
  3235. // unregister event in post element
  3236. state.GL_registerEventList.forEach(item => {
  3237. item.trigger.forEach(bindElement => {
  3238. $(item.element).off('click', bindElement);
  3239. });
  3240. });
  3241. state.GL_registerEventList = [];
  3242.  
  3243. $('.button_wrapper').remove();
  3244. $('.IG_DWPROFILE, .IG_DWPROFILE, .IG_DWSTORY, .IG_DWSTORY_ALL, .IG_DWSTORY_THUMBNAIL, .IG_DWNEWTAB, .IG_DWHISTORY, .IG_DWHISTORY_ALL, .IG_DWHINEWTAB, .IG_DWHISTORY_THUMBNAIL, .IG_REELS, .IG_REELS_NEWTAB, .IG_REELS_THUMBNAIL').remove();
  3245. $('[data-snig]').removeAttr('data-snig');
  3246.  
  3247. state.pageLoaded = false;
  3248. state.firstStarted = false;
  3249. state.currentURL = location.href;
  3250. state.GL_observer.disconnect();
  3251.  
  3252. logger('main timer re-register completed');
  3253. }
  3254.  
  3255. /**
  3256. * logger
  3257. * @description event record
  3258. *
  3259. * @return {void}
  3260. */
  3261. function logger(...messages) {
  3262. var dd = new Date();
  3263. state.GL_logger.push({
  3264. time: dd.getTime(),
  3265. content: [...messages]
  3266. });
  3267.  
  3268. if (state.GL_logger.length > 1000) {
  3269. state.GL_logger = [{
  3270. time: dd.getTime(),
  3271. content: ['logger sliced']
  3272. }, ...state.GL_logger.slice(-999)];
  3273. }
  3274.  
  3275. console.log(`[${dd.toISOString()}]`, ...messages);
  3276. }
  3277.  
  3278. /**
  3279. * initSettings
  3280. * @description Initialize preferences
  3281. *
  3282. * @return {void}
  3283. */
  3284. function initSettings() {
  3285. for (let name in USER_SETTING) {
  3286. if (GM_getValue(name) != null && typeof GM_getValue(name) === 'boolean') {
  3287. USER_SETTING[name] = GM_getValue(name);
  3288.  
  3289. if (name === "MODIFY_VIDEO_VOLUME" && GM_getValue(name) !== true) {
  3290. state.videoVolume = 1;
  3291. }
  3292. }
  3293. }
  3294. }
  3295.  
  3296.  
  3297. /**
  3298. * toggleVolumeSilder
  3299. * @description Toggle display of custom volume slider.
  3300. *
  3301. * @param {object} $videos
  3302. * @param {object} $buttonParent
  3303. * @param {string} loggerType
  3304. * @param {string} customClass
  3305. * @return {void}
  3306. */
  3307. function toggleVolumeSilder($videos, $buttonParent, loggerType, customClass = "") {
  3308. if ($buttonParent.find('div.volume_slider').length === 0) {
  3309. $buttonParent.append(`<div class="volume_slider ${customClass}" />`);
  3310. $buttonParent.find('div.volume_slider').append(`<div><input type="range" max="1" min="0" step="0.05" value="${state.videoVolume}" /></div>`);
  3311. $buttonParent.find('div.volume_slider input').attr('style', `--ig-track-progress: ${(state.videoVolume * 100) + '%'}`);
  3312. $buttonParent.find('div.volume_slider input').on('input', function () {
  3313. var percent = ($(this).val() * 100) + '%';
  3314.  
  3315. state.videoVolume = $(this).val();
  3316. GM_setValue('G_VIDEO_VOLUME', $(this).val());
  3317.  
  3318. $(this).attr('style', `--ig-track-progress: ${percent}`);
  3319.  
  3320. $videos.each(function () {
  3321. logger(`(${loggerType})`, 'video volume changed #slider');
  3322. this.volume = state.videoVolume;
  3323. });
  3324. });
  3325.  
  3326. $buttonParent.find('div.volume_slider input').on('mouseenter', function () {
  3327. var percent = (state.videoVolume * 100) + '%';
  3328. $(this).attr('style', `--ig-track-progress: ${percent}`);
  3329. $(this).val(state.videoVolume);
  3330.  
  3331.  
  3332. $videos.each(function () {
  3333. logger(`(${loggerType})`, 'video volume changed #slider');
  3334. this.volume = state.videoVolume;
  3335. });
  3336. });
  3337.  
  3338. $buttonParent.find('div.volume_slider').on('click', function (e) {
  3339. e.stopPropagation();
  3340. e.preventDefault();
  3341. });
  3342. }
  3343. else {
  3344. $buttonParent.find('div.volume_slider').remove();
  3345. }
  3346. }
  3347.  
  3348. function openImageViewer(imageUrl) {
  3349. removeImageViewer();
  3350.  
  3351. $('body').append(
  3352. `<div id="imageViewer">
  3353. <div id="iv_header">
  3354. <div style="flex:1;">Image Viewer</div>
  3355. <div id="iv_close">${SVG.CLOSE}</div>
  3356. </div>
  3357. <img id="iv_image" src="" />
  3358. </div>`);
  3359.  
  3360. const $container = $('#imageViewer');
  3361. const $header = $('#iv_header');
  3362. const $closeIcon = $('#iv_close');
  3363. const $image = $('#iv_image');
  3364.  
  3365.  
  3366. $image.attr('src', imageUrl);
  3367. $container.css('display', 'flex');
  3368.  
  3369. let scale = 0.75;
  3370. let posX = 0, posY = 0;
  3371. let isDragging = false;
  3372. let startX, startY;
  3373.  
  3374. $image.on('load', () => {
  3375. posX = (window.innerWidth - $image[0].width) / 2;
  3376. posY = (window.innerHeight - $image[0].height) / 2;
  3377. updateImageStyle();
  3378. });
  3379.  
  3380. $image.on('dragstart drop', (e) => {
  3381. e.preventDefault();
  3382. });
  3383.  
  3384. $image.on('click', (e) => {
  3385. e.preventDefault();
  3386. e.stopPropagation();
  3387. });
  3388.  
  3389. $image.on('wheel', (e) => {
  3390. e.preventDefault();
  3391. scale += e.originalEvent.deltaY > 0 ? -0.15 : 0.15;
  3392. scale = Math.min(Math.max(0.75, scale), 5);
  3393. updateImageStyle();
  3394. });
  3395.  
  3396. $image.on('mousedown', (e) => {
  3397. isDragging = true;
  3398. startX = e.pageX - posX;
  3399. startY = e.pageY - posY;
  3400. $image.css('cursor', 'grabbing');
  3401. });
  3402.  
  3403. $image.on('mouseup', () => {
  3404. isDragging = false;
  3405. $image.css('cursor', 'grab');
  3406. });
  3407.  
  3408. $(document).on('mousemove.igHelper', (e) => {
  3409. if (!isDragging) return;
  3410. e.preventDefault();
  3411.  
  3412. posX = e.pageX - startX;
  3413. posY = e.pageY - startY;
  3414.  
  3415. updateImageStyle();
  3416. });
  3417.  
  3418. $container.on('click', () => {
  3419. removeImageViewer();
  3420. });
  3421.  
  3422. $closeIcon.on('click', () => {
  3423. removeImageViewer();
  3424. });
  3425.  
  3426. $header.on('click', (e) => {
  3427. e.preventDefault();
  3428. e.stopPropagation();
  3429. });
  3430.  
  3431. function updateImageStyle() {
  3432. $image.css('transform', `scale(${scale})`);
  3433. $image.css('left', `${posX}px`);
  3434. $image.css('top', `${posY}px`);
  3435. }
  3436. }
  3437.  
  3438. function removeImageViewer() {
  3439. $('#imageViewer').remove();
  3440. $(document).off('mousemove.igHelper');
  3441. }
  3442.  
  3443. /**
  3444. * translateText
  3445. * @description i18n translation text
  3446. *
  3447. * @return {void}
  3448. */
  3449. function translateText() {
  3450. var eLocale = {
  3451. "en-US": {
  3452. "NOTICE_UPDATE_TITLE": "Wololo! New version released.",
  3453. "NOTICE_UPDATE_CONTENT": "IG-Helper has released a new version, click here to update.",
  3454. "CHECK_UPDATE": "Checking for Script Updates",
  3455. "CHECK_UPDATE_MENU": "Checking for Updates",
  3456. "CHECK_UPDATE_INTRO": "Check for updates when the script is triggered (check every 300 seconds).\nUpdate notifications will be sent as desktop notifications through the browser.",
  3457. "RELOAD_SCRIPT": "Reload Script",
  3458. "DONATE": "Donate",
  3459. "FEEDBACK": "Feedback",
  3460. "IMAGE_VIEWER": "Open Image In Viewer",
  3461. "NEW_TAB": "Open in New Tab",
  3462. "SHOW_DOM_TREE": "Show DOM Tree",
  3463. "SELECT_AND_COPY": "Select All and Copy from the Input Box",
  3464. "DOWNLOAD_DOM_TREE": "Download DOM Tree as a Text File",
  3465. "REPORT_GITHUB": "Report an Issue on GitHub",
  3466. "REPORT_DISCORD": "Report an Issue on Discord Support Server",
  3467. "REPORT_FORK": "Report an Issue on Greasy Fork镜像",
  3468. "DEBUG": "Debug Window",
  3469. "CLOSE": "Close",
  3470. "ALL_CHECK": "Select All",
  3471. "BATCH_DOWNLOAD_SELECTED": "Download Selected Resources",
  3472. "BATCH_DOWNLOAD_DIRECT": "Download All Resources",
  3473. "IMG": "Image",
  3474. "VID": "Video",
  3475. "DW": "Download",
  3476. "DW_ALL": "Download All Resources",
  3477. "THUMBNAIL_INTRO": "Download Video Thumbnail",
  3478. "LOAD_BLOB_ONE": "Loading Blob Media...",
  3479. "LOAD_BLOB_MULTIPLE": "Loading Blob Media and Others...",
  3480. "LOAD_BLOB_RELOAD": "Detecting Blob Media, reloading...",
  3481. "NO_CHECK_RESOURCE": "You need to select a resource to download.",
  3482. "NO_VID_URL": "Cannot find video URL.",
  3483. "SETTING": "Settings",
  3484. "AUTO_RENAME": "Automatically Rename Files (Right-Click to Set)",
  3485. "RENAME_SHORTCODE": "Rename the File and Include Shortcode",
  3486. "RENAME_PUBLISH_DATE": "Set Renamed File Timestamp to Resource Publish Date",
  3487. "RENAME_LOCATE_DATE": "Modify Renamed File Timestamp Date Format (Right-Click to Set)",
  3488. "DISABLE_VIDEO_LOOPING": "Disable Video Auto-looping",
  3489. "HTML5_VIDEO_CONTROL": "Display HTML5 Video Controller",
  3490. "REDIRECT_CLICK_USER_STORY_PICTURE": "Redirect When Clicking on User's Story Picture",
  3491. "FORCE_FETCH_ALL_RESOURCES": "Force Fetch All Resources in the Post",
  3492. "DIRECT_DOWNLOAD_VISIBLE_RESOURCE": "Directly Download the Visible Resources in the Post",
  3493. "DIRECT_DOWNLOAD_ALL": "Directly Download All Resources in the Post",
  3494. "MODIFY_VIDEO_VOLUME": "Modify Video Volume (Right-Click to Set)",
  3495. "SCROLL_BUTTON": "Enable Scroll Buttons for Reels Page",
  3496. "FORCE_RESOURCE_VIA_MEDIA": "Force Fetch Resource via Media API",
  3497. "USE_BLOB_FETCH_WHEN_MEDIA_RATE_LIMIT": "Use Alternative Methods to Download When the Media API is Not Accessible",
  3498. "NEW_TAB_ALWAYS_FORCE_MEDIA_IN_POST": "Always Use Media API for 'Open in New Tab' in Posts",
  3499. "AUTO_RENAME_INTRO": "Auto rename file to custom format:\nCustom Format List: \n%USERNAME% - Username\n%SOURCE_TYPE% - Download Source\n%SHORTCODE% - Post Shortcode\n%YEAR% - Year when downloaded/published\n%2-YEAR% - Year (last two digits) when downloaded/published\n%MONTH% - Month when downloaded/published\n%DAY% - Day when downloaded/published\n%HOUR% - Hour when downloaded/published\n%MINUTE% - Minute when downloaded/published\n%SECOND% - Second when downloaded/published\n%ORIGINAL_NAME% - Original name of downloaded file\n%ORIGINAL_NAME_FIRST% - Original name of downloaded file (first part of name)\n\nIf set to false, the file name will remain unchanged.\nExample: instagram_321565527_679025940443063_4318007696887450953_n.jpg",
  3500. "RENAME_SHORTCODE_INTRO": "Auto rename file to the following format:\nUSERNAME-TYPE-SHORTCODE-TIMESTAMP.FILETYPE\nExample: instagram-photo-CwkxyiVynpW-1670350000.jpg\n\nThis will ONLY work if [Automatically Rename Files] is set to TRUE.",
  3501. "RENAME_PUBLISH_DATE_INTRO": "Sets the timestamp in the file rename format to the resource publish date (browser time zone).\n\nThis feature only works when [Automatically Rename Files] is set to TRUE.",
  3502. "RENAME_LOCATE_DATE_INTRO": "Modify the renamed file timestamp date format to the browser's local time, and format it to your preferred regional date format.\n\nThis feature only works when [Automatically Rename Files] is set to TRUE.",
  3503. "DISABLE_VIDEO_LOOPING_INTRO": "Disable video auto-looping in Reels and posts.",
  3504. "HTML5_VIDEO_CONTROL_INTRO": "Display the HTML5 video controller in video resource.\n\nThis will hide the custom video volume slider and replace it with the HTML5 controller. The HTML5 controller can be hidden by right-clicking on the video to reveal the original details.",
  3505. "REDIRECT_CLICK_USER_STORY_PICTURE_INTRO": "Redirect to a user's profile page when right-clicking on their avatar in the story area on the homepage.\nIf you use the middle mouse button to click, it will open in a new tab.",
  3506. "FORCE_FETCH_ALL_RESOURCES_INTRO": "Force fetching of all resources (photos and videos) in a post via the Instagram API to remove the limit of three resources per post.",
  3507. "DIRECT_DOWNLOAD_VISIBLE_RESOURCE_INTRO": "Directly download the current resources available in the post.",
  3508. "DIRECT_DOWNLOAD_ALL_INTRO": "When you click the download button, all resources in the post will be forcibly fetched and downloaded.",
  3509. "MODIFY_VIDEO_VOLUME_INTRO": "Modify the video playback volume in Reels and posts (right-click to open the volume setting slider).",
  3510. "SCROLL_BUTTON_INTRO": "Enable scroll buttons for the lower right corner of the Reels page.",
  3511. "FORCE_RESOURCE_VIA_MEDIA_INTRO": "The Media API will try to get the highest quality photo or video possible, but it may take longer to load.",
  3512. "USE_BLOB_FETCH_WHEN_MEDIA_RATE_LIMIT_INTRO": "When the Media API reaches its rate limit or cannot be used for other reasons, the Forced Fetch API will be used to download resources (the resource quality may be slightly lower).",
  3513. "NEW_TAB_ALWAYS_FORCE_MEDIA_IN_POST_INTRO": "The [Open in New Tab] button in posts will always use the Media API to obtain high-resolution resources.",
  3514. "SKIP_VIEW_STORY_CONFIRM": "Skip the Confirmation Page for Viewing a Story/Highlight",
  3515. "SKIP_VIEW_STORY_CONFIRM_INTRO": "Automatically skip when confirmation page is shown in story or highlight."
  3516. }
  3517. };
  3518.  
  3519. var resultUnsorted = Object.assign({}, eLocale, state.locale);
  3520. var resultSorted = Object.keys(resultUnsorted).sort().reduce(
  3521. (obj, key) => {
  3522. obj[key] = resultUnsorted[key];
  3523. return obj;
  3524. }, {}
  3525. );
  3526.  
  3527. return resultSorted;
  3528. }
  3529.  
  3530. /**
  3531. * getTranslationText
  3532. * @description i18n translation text
  3533. *
  3534. * @param {String} lang
  3535. * @return {Object}
  3536. */
  3537. async function getTranslationText(lang) {
  3538. return new Promise((resolve, reject) => {
  3539. GM_xmlhttpRequest({
  3540. method: "GET",
  3541. url: `https://raw.githubusercontent.com/SN-Koarashi/ig-helper/master/locale/translations/${lang}.json`,
  3542. onload: function (response) {
  3543. try {
  3544. let obj = JSON.parse(response.response);
  3545. resolve(obj);
  3546. }
  3547. catch (err) {
  3548. reject(err);
  3549. }
  3550. },
  3551. onerror: function (err) {
  3552. logger('getTranslationText()', 'reject', err);
  3553. reject(err);
  3554. }
  3555. });
  3556. });
  3557. }
  3558.  
  3559. /**
  3560. * _i18n
  3561. * @description Perform i18n translation
  3562. *
  3563. * @param {String} text
  3564. * @return {void}
  3565. */
  3566. function _i18n(text) {
  3567. const translate = translateText();
  3568.  
  3569. if (translate[state.lang] != undefined && translate[state.lang][text] != undefined) {
  3570. return translate[state.lang][text];
  3571. }
  3572. else {
  3573. return translate["en-US"][text];
  3574. }
  3575. }
  3576.  
  3577. /**
  3578. * repaintingTranslations
  3579. * @description Perform i18n translation
  3580. *
  3581. * @return {void}
  3582. */
  3583. function repaintingTranslations() {
  3584. $('[data-ih-locale]').each(function () {
  3585. $(this).text(_i18n($(this).attr('data-ih-locale')));
  3586. });
  3587. $('[data-ih-locale-title]').each(function () {
  3588. $(this).attr('title', _i18n($(this).attr('data-ih-locale-title')));
  3589. });
  3590. }
  3591.  
  3592. /* register all events */
  3593.  
  3594. // Running if document is ready
  3595. $(function () {
  3596. function ConvertDOM(domEl) {
  3597. var obj = [];
  3598. for (var ele of domEl) {
  3599. obj.push({
  3600. tagName: ele.tagName,
  3601. id: ele.id,
  3602. className: ele.className
  3603. });
  3604. }
  3605.  
  3606. return obj;
  3607. }
  3608.  
  3609. function setDOMTreeContent() {
  3610. let text = $('div[id^="mount"]')[0];
  3611. var logger = "";
  3612. state.GL_logger.forEach(log => {
  3613. var jsonData = JSON.stringify(log.content, function (key, value) {
  3614. if (Array.isArray(this)) {
  3615. if (typeof value === "object" && value instanceof jQuery) {
  3616. return ConvertDOM(value);
  3617. }
  3618. return value;
  3619. }
  3620. else {
  3621. return value;
  3622. }
  3623. }, "\t");
  3624. logger += `${new Date(log.time).toISOString()}: ${jsonData}\n`
  3625. });
  3626. $('.IG_POPUP_DIG .IG_POPUP_DIG_BODY textarea').text("Logger:\n" + logger + "\n-----\n\nLocation: " + location.pathname + "\nDOM Tree with div#mount:\n" + text.innerHTML);
  3627. }
  3628.  
  3629. $('body').on('click', '.IG_POPUP_DIG .IG_POPUP_DIG_BODY .IG_DISPLAY_DOM_TREE', function () {
  3630. setDOMTreeContent();
  3631. });
  3632.  
  3633. $('body').on('click', '.IG_POPUP_DIG .IG_POPUP_DIG_BODY .IG_SELECT_DOM_TREE', function () {
  3634. $('.IG_POPUP_DIG .IG_POPUP_DIG_BODY textarea').select();
  3635. document.execCommand('copy');
  3636. });
  3637.  
  3638. $('body').on('click', '.IG_POPUP_DIG .IG_POPUP_DIG_BODY .IG_DOWNLOAD_DOM_TREE', function () {
  3639. if ($('.IG_POPUP_DIG .IG_POPUP_DIG_BODY textarea').text().length === 0) {
  3640. setDOMTreeContent();
  3641. }
  3642.  
  3643. var text = $('.IG_POPUP_DIG .IG_POPUP_DIG_BODY textarea').text();
  3644. var a = document.createElement("a");
  3645. var file = new Blob([text], { type: "text/plain" });
  3646. a.href = URL.createObjectURL(file);
  3647. a.download = "DOMTree-" + new Date().getTime() + ".txt";
  3648.  
  3649. document.body.appendChild(a);
  3650. a.click();
  3651. a.remove();
  3652. });
  3653.  
  3654. // Close the download dialog if user click the close icon
  3655. $('body').on('click', '.IG_POPUP_DIG_BTN, .IG_POPUP_DIG_BG', function () {
  3656. if ($(this).parent('#tempWrapper').length > 0) {
  3657. $(this).parent('#tempWrapper').fadeOut(250, function () {
  3658. $(this).remove();
  3659. });
  3660. }
  3661. else {
  3662. $('.IG_POPUP_DIG').remove();
  3663. }
  3664. });
  3665.  
  3666. $(window).on('keydown', function (e) {
  3667. // Hot key [Alt+Q] to close the download dialog
  3668. if (e.which == '81' && e.altKey) {
  3669. $('.IG_POPUP_DIG').remove();
  3670. e.preventDefault();
  3671. }
  3672. // Hot key [Alt+W] to open the settings dialog
  3673. if (e.which == '87' && e.altKey) {
  3674. showSetting();
  3675. e.preventDefault();
  3676. }
  3677.  
  3678. // Hot key [Alt+Z] to open the settings dialog
  3679. if (e.which == '90' && e.altKey) {
  3680. showDebugDOM();
  3681. e.preventDefault();
  3682. }
  3683.  
  3684. // Hot key [Alt+R] to open the settings dialog
  3685. if (e.which == '82' && e.altKey) {
  3686. reloadScript();
  3687. e.preventDefault();
  3688. }
  3689.  
  3690. // Hot key [Alt+S] to download story/highlights resource
  3691. if (e.which == '83' && e.altKey) {
  3692. if (location.href.match(/^(https:\/\/www\.instagram\.com\/stories\/)/ig) && $('.IG_DWSTORY').length > 0) {
  3693. $('.IG_DWSTORY')?.trigger("click");
  3694. }
  3695. if (location.href.match(/^(https:\/\/www\.instagram\.com\/stories\/highlights\/)/ig) && $('.IG_DWHISTORY').length > 0) {
  3696. $('.IG_DWHISTORY')?.trigger("click");
  3697. }
  3698. e.preventDefault();
  3699. }
  3700. });
  3701.  
  3702. $('body').on('change', '.IG_POPUP_DIG input', function () {
  3703. var name = $(this).attr('id');
  3704.  
  3705. if (name && USER_SETTING[name] !== undefined) {
  3706. let isChecked = $(this).prop('checked');
  3707. GM_setValue(name, isChecked);
  3708. USER_SETTING[name] = isChecked;
  3709.  
  3710. console.log('user settings', name, isChecked);
  3711. }
  3712. });
  3713.  
  3714. $('body').on('click', '.IG_POPUP_DIG .globalSettings', function (e) {
  3715. if ($(this).find('#tempWrapper').length > 0) {
  3716. e.preventDefault();
  3717. }
  3718. });
  3719.  
  3720. $('body').on('change', '.IG_POPUP_DIG #tempWrapper input:not(#date_format)', function () {
  3721. let value = $(this).val();
  3722.  
  3723. if ($(this).attr('type') == 'range') {
  3724. $(this).next().val(value);
  3725. }
  3726. else {
  3727. $(this).prev().val(value);
  3728. }
  3729.  
  3730. if (value >= 0 && value <= 1) {
  3731. state.videoVolume = value;
  3732. GM_setValue('G_VIDEO_VOLUME', value);
  3733. }
  3734. });
  3735.  
  3736. $('body').on('input', '.IG_POPUP_DIG #tempWrapper input:not(#date_format)', function () {
  3737. if ($(this).attr('type') == 'range') {
  3738. let value = $(this).val();
  3739. $(this).next().val(value);
  3740. }
  3741. else {
  3742. let value = $(this).val();
  3743. if (value >= 0 && value <= 1) {
  3744. $(this).prev().val(value);
  3745. }
  3746. else {
  3747. if (value < 0) {
  3748. $(this).val(0);
  3749. }
  3750. else {
  3751. $(this).val(1);
  3752. }
  3753. }
  3754. }
  3755. });
  3756.  
  3757. $('body').on('input', '.IG_POPUP_DIG #tempWrapper input#date_format', function () {
  3758. GM_setValue('G_RENAME_FORMAT', $(this).val());
  3759. state.fileRenameFormat = $(this).val();
  3760. });
  3761.  
  3762. $('body').on('click', 'a[data-needed="direct"]', function (e) {
  3763. e.preventDefault();
  3764. triggerLinkElement(this);
  3765. });
  3766.  
  3767. $('body').on('click', '.IG_POPUP_DIG_BODY .newTab', function () {
  3768. // replace https://instagram.ftpe8-2.fna.fbcdn.net/ to https://scontent.cdninstagram.com/ becase of same origin policy (some video)
  3769.  
  3770. if (USER_SETTING.FORCE_RESOURCE_VIA_MEDIA && USER_SETTING.NEW_TAB_ALWAYS_FORCE_MEDIA_IN_POST) {
  3771. triggerLinkElement($(this).parent().children('a').first()[0], true);
  3772. }
  3773. else {
  3774. var urlObj = new URL($(this).parent().children('a').attr('data-href'));
  3775. urlObj.host = 'scontent.cdninstagram.com';
  3776.  
  3777. openNewTab(urlObj.href);
  3778. }
  3779. });
  3780.  
  3781. $('body').on('click', '.IG_POPUP_DIG_BODY .videoThumbnail', function () {
  3782. let timestamp = new Date().getTime();
  3783.  
  3784. if (USER_SETTING.RENAME_PUBLISH_DATE && $(this).parent().children('a').attr('datetime')) {
  3785. timestamp = $(this).parent().children('a').attr('datetime');
  3786. }
  3787.  
  3788. let postPath = $(this).parent().children('a').attr('data-path') ?? $('#article-id').text();
  3789.  
  3790. saveFiles($(this).parent().children('a').find('img').first().attr('src'), $(this).parent().children('a').attr('data-username'), 'thumbnail', timestamp, 'jpg', postPath);
  3791. });
  3792.  
  3793. // Running if user left-click download icon in stories
  3794. $('body').on('click', '.IG_DWSTORY', function () {
  3795. onStory(true);
  3796. });
  3797.  
  3798. // Running if user left-click all download icon in stories
  3799. $('body').on('click', '.IG_DWSTORY_ALL', function () {
  3800. onStoryAll();
  3801. });
  3802.  
  3803. // Running if user left-click 'open in new tab' icon in stories
  3804. $('body').on('click', '.IG_DWNEWTAB', function (e) {
  3805. e.preventDefault();
  3806. onStory(true, true, true);
  3807. });
  3808.  
  3809. // Running if user left-click download thumbnail icon in stories
  3810. $('body').on('click', '.IG_DWSTORY_THUMBNAIL', function () {
  3811. onStoryThumbnail(true);
  3812. });
  3813.  
  3814. // Running if user left-click download icon in profile
  3815. $('body').on('click', '.IG_DWPROFILE', function (e) {
  3816. e.stopPropagation();
  3817. onProfileAvatar(true);
  3818. });
  3819.  
  3820. // Running if user left-click download icon in highlight stories
  3821. $('body').on('click', '.IG_DWHISTORY', function () {
  3822. onHighlightsStory(true);
  3823. });
  3824.  
  3825. // Running if user left-click all download icon in highlight stories
  3826. $('body').on('click', '.IG_DWHISTORY_ALL', function () {
  3827. onHighlightsStoryAll();
  3828. });
  3829.  
  3830. // Running if user left-click 'open in new tab' icon in highlight stories
  3831. $('body').on('click', '.IG_DWHINEWTAB', function (e) {
  3832. e.preventDefault();
  3833. onHighlightsStory(true, true);
  3834. });
  3835.  
  3836. // Running if user left-click thumbnail download icon in highlight stories
  3837. $('body').on('click', '.IG_DWHISTORY_THUMBNAIL', function () {
  3838. onHighlightsStoryThumbnail(true);
  3839. });
  3840.  
  3841. // Running if user left-click download icon in reels
  3842. $('body').on('click', '.IG_REELS', function () {
  3843. onReels(true, true);
  3844. });
  3845.  
  3846. // Running if user left-click newtab icon in reels
  3847. $('body').on('click', '.IG_REELS_NEWTAB', function () {
  3848. onReels(true, true, true);
  3849. });
  3850.  
  3851. // Running if user left-click download icon in reels
  3852. $('body').on('click', '.IG_REELS_THUMBNAIL', function () {
  3853. onReels(true, false);
  3854. });
  3855.  
  3856. // Running if user right-click profile picture in stories area
  3857. $('body').on('mousedown', 'button[role="menuitem"], div[role="menuitem"], ul > li[tabindex="-1"] > div[role="button"]', function (e) {
  3858. // Right-Click || Middle-Click
  3859. if (e.which === 3 || e.which === 2) {
  3860. if (location.href === 'https://www.instagram.com/' && USER_SETTING.REDIRECT_CLICK_USER_STORY_PICTURE) {
  3861. e.preventDefault();
  3862. if ($(this).find('canvas._aarh, canvas + span > img').length > 0) {
  3863. const targetUrl = 'https://www.instagram.com/' + $(this).children('div').last().text();
  3864. if (e.which === 2) {
  3865. GM_openInTab(targetUrl);
  3866. }
  3867. else {
  3868. location.href = targetUrl;
  3869. }
  3870. }
  3871. }
  3872. }
  3873. });
  3874.  
  3875. $('body').on('change', '.IG_POPUP_DIG_TITLE .checkbox', function () {
  3876. var isChecked = $(this).find('input').prop('checked');
  3877. $('.IG_POPUP_DIG_BODY .inner_box').each(function () {
  3878. $(this).prop('checked', isChecked);
  3879. });
  3880. });
  3881.  
  3882. $('body').on('change', '.IG_POPUP_DIG_BODY .inner_box', function () {
  3883. var checked = $('.IG_POPUP_DIG_BODY .inner_box:checked').length;
  3884. var total = $('.IG_POPUP_DIG_BODY .inner_box').length;
  3885.  
  3886.  
  3887. $('.IG_POPUP_DIG_TITLE .checkbox').find('input').prop('checked', checked == total);
  3888. });
  3889.  
  3890. $('body').on('click', '.IG_POPUP_DIG_TITLE #batch_download_selected', function () {
  3891. let index = 0;
  3892. $('.IG_POPUP_DIG_BODY a[data-needed="direct"]').each(function () {
  3893. if ($(this).prev().children('input').prop('checked')) {
  3894. $(this).trigger("click");
  3895. index++;
  3896. }
  3897. });
  3898.  
  3899. if (index == 0) {
  3900. alert(_i18n('NO_CHECK_RESOURCE'));
  3901. }
  3902. });
  3903.  
  3904. $('body').on('change', '.IG_POPUP_DIG_TITLE #langSelect', function () {
  3905. GM_setValue('lang', $(this).val());
  3906. state.lang = $(this).val();
  3907.  
  3908. if (state.lang?.startsWith('en') || state.locale[state.lang] != null) {
  3909. repaintingTranslations();
  3910. registerMenuCommand();
  3911. }
  3912. else {
  3913. getTranslationText(state.lang).then((res) => {
  3914. state.locale[state.lang] = res;
  3915. repaintingTranslations();
  3916. registerMenuCommand();
  3917. }).catch((err) => {
  3918. console.error('getTranslationText catch error:', err);
  3919. });
  3920. }
  3921. });
  3922.  
  3923. $('body').on('click', '.IG_POPUP_DIG_TITLE #batch_download_direct', function () {
  3924. $('.IG_POPUP_DIG_BODY a[data-needed="direct"]').each(function () {
  3925. $(this).trigger("click");
  3926. });
  3927. });
  3928.  
  3929. const element_observer = new MutationObserver((mutationsList) => {
  3930. for (const mutation of mutationsList) {
  3931. if (mutation.type === 'childList') {
  3932. mutation.addedNodes.forEach((node) => {
  3933. const $videos = $(node).find('video');
  3934.  
  3935. if (location.pathname.startsWith("/stories/highlights/")) {
  3936. if (
  3937. $(node).attr("data-ih-locale-title") == null &&
  3938. $(node).attr("data-visualcompletion") == null &&
  3939. node.tagName === "DIV"
  3940. ) {
  3941. // replace something times ago format to publish time when switch highlight
  3942. var $time = $(node).find("time[datetime]");
  3943. let publishTitle = $time?.attr('title');
  3944. if (publishTitle != null) {
  3945. $time.text(publishTitle);
  3946. }
  3947. }
  3948. }
  3949.  
  3950. if ($videos.length > 0) {
  3951. // Modify video volume
  3952. if (USER_SETTING.MODIFY_VIDEO_VOLUME) {
  3953. $videos.each(function () {
  3954. $(this).on('play playing', function () {
  3955. if (!$(this).data('modify')) {
  3956. $(this).attr('data-modify', true);
  3957. this.volume = state.videoVolume;
  3958. logger('(audio_observer) Added video event listener #modify');
  3959. }
  3960. });
  3961. });
  3962. }
  3963.  
  3964. if (location.pathname.match(/^(\/stories\/)/ig)) {
  3965. const isHighlight = location.pathname.match(/^(\/stories\/highlights\/)/ig) != null;
  3966. const storyType = isHighlight ? 'highlight' : 'story';
  3967.  
  3968. $videos.each(function () {
  3969. $(this).on('timeupdate', function () {
  3970. if (!$(this).data('modify-thumbnail')) {
  3971. let $video = $(this);
  3972. if ($video.parents('div[style][class]').filter(function () {
  3973. return $(this).width() == $video.width();
  3974. }).find('.IG_DWSTORY_THUMBNAIL, .IG_DWHISTORY_THUMBNAIL').length === 0) {
  3975. $(this).attr('data-modify-thumbnail', true);
  3976.  
  3977. if (isHighlight) {
  3978. onHighlightsStoryThumbnail(false);
  3979. }
  3980. else {
  3981. onStoryThumbnail(false);
  3982. }
  3983.  
  3984. logger(`(${storyType})`, 'Manually inserting thumbnail button');
  3985. }
  3986. else {
  3987. $(this).attr('data-modify-thumbnail', true);
  3988. logger(`(${storyType})`, 'Thumbnail button already inserted');
  3989. }
  3990. }
  3991. });
  3992.  
  3993. var $video = $(this);
  3994.  
  3995. if (USER_SETTING.HTML5_VIDEO_CONTROL) {
  3996. if (!$video.data('controls')) {
  3997. logger(`(${storyType})`, 'Added video html5 contorller #modify');
  3998.  
  3999. if (USER_SETTING.MODIFY_VIDEO_VOLUME) {
  4000. this.volume = state.videoVolume;
  4001.  
  4002. $video.on('loadstart', function () {
  4003. this.volume = state.videoVolume;
  4004. });
  4005. }
  4006.  
  4007. let $videoParent = $video.parents('div').filter(function () {
  4008. return $(this).attr('class') == null && $(this).attr('style') == null;
  4009. }).first();
  4010.  
  4011. // story bottom bar
  4012. let $bottomBar = $videoParent.next();
  4013. $bottomBar.hide();
  4014.  
  4015. // read more button in center
  4016. let $readMoreButton = $videoParent.find('div[class][role="button"]');
  4017. $readMoreButton.hide();
  4018.  
  4019. const hideContextmenu = function (e) {
  4020. e.preventDefault();
  4021. $video.css('z-index', '2');
  4022. $video.attr('controls', true);
  4023.  
  4024. $readMoreButton.hide();
  4025. $bottomBar.hide();
  4026.  
  4027. toggleVolumeSilder($video, $video.parents('div[style][class]').filter(function () {
  4028. return $(this).width() == $video.width();
  4029. }).first(), storyType, 'vertical');
  4030. };
  4031.  
  4032. // Hide layout to show controller
  4033. $video.parent().find('video + div').on('contextmenu', hideContextmenu);
  4034. $readMoreButton.on('contextmenu', hideContextmenu);
  4035. $bottomBar.on('contextmenu', hideContextmenu);
  4036.  
  4037. // Restore layout to show details interface
  4038. $video.on('contextmenu', function (e) {
  4039. e.preventDefault();
  4040. $video.css('z-index', '-1');
  4041. $video.removeAttr('controls');
  4042.  
  4043. $bottomBar.show();
  4044. $readMoreButton.show();
  4045.  
  4046. toggleVolumeSilder($video, $video.parents('div[style][class]').filter(function () {
  4047. return $(this).width() == $video.width();
  4048. }).first(), storyType, 'vertical');
  4049. });
  4050.  
  4051. $video.on('volumechange', function () {
  4052. // This is mute/unmute's icon
  4053. let $element_mute_button = $videoParent.parent().find('svg > path[d^="M1.5 13.3c-.8 0-1.5.7-1.5 1.5v18.4c0"], svg > path[d^="M16.636 7.028a1.5 1.5"]').parents('[role="button"]').first();
  4054.  
  4055. var is_elelment_muted = $element_mute_button.find('svg > path[d^="M16.636"]').length === 0;
  4056.  
  4057. if (this.muted != is_elelment_muted) {
  4058. this.volume = state.videoVolume;
  4059. $element_mute_button?.trigger("click");
  4060. }
  4061.  
  4062. if ($(this).attr('data-completed')) {
  4063. state.videoVolume = this.volume;
  4064. GM_setValue('G_VIDEO_VOLUME', this.volume);
  4065. }
  4066.  
  4067. if (this.volume == state.videoVolume) {
  4068. $(this).attr('data-completed', true);
  4069. }
  4070. });
  4071.  
  4072. $video.css('position', 'absolute');
  4073. $video.css('z-index', '2');
  4074. $video.attr('data-controls', true);
  4075. $video.attr('controls', true);
  4076. }
  4077. }
  4078. else {
  4079. toggleVolumeSilder($video, $video.parents('div[style][class]').filter(function () {
  4080. return $(this).width() == $video.width();
  4081. }).first(), storyType, 'vertical');
  4082. }
  4083. });
  4084. }
  4085. }
  4086. });
  4087. }
  4088. }
  4089. });
  4090.  
  4091. element_observer.observe($('div[id^="mount"]')[0], {
  4092. childList: true,
  4093. subtree: true,
  4094. });
  4095. });
  4096. })(jQuery);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址