Selection and Copying Restorer (Universal)

破解鎖右鍵,解除禁止復制、剪切、選擇文本、右鍵菜單、文字複製、文字選取、圖片右鍵等限制。增強功能:Alt鍵超連結文字選取。

< 腳本Selection and Copying Restorer (Universal)的回應

評論:正評 - 腳本一切正常

§
發表於:2024-07-17
編輯:2024-07-17
const enabledWebsites = await GM.getValue("enabledWebsites");
  if (!enabledWebsites) {
    await GM.setValue("enabledWebsites", {});
  }

  GM_registerMenuCommand(
    (enabledWebsites[location.origin] ? "Disable" : "Enable") +
      " on this website",
    async () => {
      enabledWebsites[location.origin] = !enabledWebsites[location.origin];
      await GM.setValue("enabledWebsites", enabledWebsites);
      location.reload();
    }
  );

  if (enabledWebsites[location.origin]) {
    main(context);
  }

作者你好,能考虑加一下网页启用/禁用这个功能然后更新到下个版本里吗

§
發表於:2024-07-20

類似功能會在下一版本加入

預計會修改代碼,避免 location.reload();

預定要到8月頭才有空處理

§
發表於:2024-07-20

類似功能會在下一版本加入

預計會修改代碼,避免 location.reload();

預定要到8月頭才有空處理

感谢

發表回覆

登入以回復