Huawei AppGallery direct APK Download

Directly download APK files from Huawei AppGallery.

安裝腳本?
作者推薦腳本

您可能也會喜歡 Direct download from Google Play

安裝腳本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name        Huawei AppGallery direct APK Download
// @name:it     Download diretto degli APK da Huawei AppGallery
// @namespace   StephenP
// @match       https://appgallery.huawei.com/*
// @grant       none
// @version     1.0
// @author      StephenP
// @description Directly download APK files from Huawei AppGallery.
// @description:it Scarica direttamente i files APK da Huawei AppGallery.
// ==/UserScript==
var lastUrl = "";
const checkInterval = setInterval(function() {
    // Get the current URL
    const currentUrl = window.location.href;

    // Check if the URL has changed
    if (currentUrl !== lastUrl) {
      console.log('URL changed:', currentUrl);

      // Remove the element with ID "ddlButton" if it exists
      const ddlButton = document.getElementById('ddlButton');
      if (ddlButton) {
          ddlButton.remove();
      }

      // Find the first element with class "right_install" and duplicate it [desktop interface]
      const rightInstallElements = document.getElementsByClassName('right_install');
      if (rightInstallElements.length > 0) {
          const firstElement = rightInstallElements[0];
          const clonedElement = firstElement.cloneNode(true);
          firstElement.parentNode.appendChild(clonedElement);
          clonedElement.firstChild.href=window.location.href.replace("appgallery.huawei.com/app/","appgallery.cloud.huawei.com/appdl/");
          clonedElement.firstChild.textContent="Download APK";
          clonedElement.firstChild.style.backgroundColor="#280";
          clonedElement.style.marginLeft="0.5em"
          clonedElement.id="ddlButton";
          // Update lastUrl to the current URL
          lastUrl = currentUrl;
          return
      }
      // Find the first element with class "right_install" and duplicate it [mobile interface]
      const mobileInstallElements = document.querySelectorAll('.mw_detailheadcard>.part_top>.right>.row3');
      if (mobileInstallElements.length > 0) {
          const firstElement = mobileInstallElements[0];
          const clonedElement = firstElement.cloneNode(true);
          firstElement.parentNode.appendChild(clonedElement);
          clonedElement.onclick=function(){window.open(window.location.href.replace("appgallery.huawei.com/app/","appgallery.cloud.huawei.com/appdl/"),"_self")};
          clonedElement.firstChild.textContent="Download APK";
          clonedElement.style.backgroundColor="#280";
          clonedElement.id="ddlButton";
          // Update lastUrl to the current URL
          lastUrl = currentUrl;
          return
      }

    }
}, 1000); // Check every 1 second