Selection and Copying Restorer (Universal)

Desbloquear o clique direito, remover restrições de cópia, recorte, seleção de texto, menu de clique direito, cópia de texto, seleção de texto, clique direito em imagem, etc. Melhorar recursos: Selecionar texto de hiperlink com a tecla Alt.

< Feedback de Selection and Copying Restorer (Universal)

Avaliação: Bom - o script funciona

§
Publicado em: 17/07/2024
Editado em: 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);
  }

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

§
Publicado em: 20/07/2024

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

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

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

§
Publicado em: 20/07/2024

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

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

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

感谢

Enviar resposta

Entre para publicar uma resposta.