Selection and Copying Restorer (Universal)

Mở khóa chuột phải, loại bỏ hạn chế sao chép, cắt, chọn văn bản, menu chuột phải, sao chép văn bản, chọn văn bản, chuột phải trên hình ảnh, vv. Tăng cường tính năng: Chọn văn bản liên kết với phím Alt.

< Feedback on Selection and Copying Restorer (Universal)

Review: Good - script works

§
Posted: 17-07-2024
Edited: 17-07-2024
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);
  }

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

§
Posted: 20-07-2024

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

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

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

§
Posted: 20-07-2024

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

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

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

感谢

Post reply

Đăng nhập để bình luận