去哪儿度假手机版支持复制文字

手机版去哪儿页面支持复制文字,适用于去哪儿度假页面。原理很简单。就是每个元素都让他可编辑。

当前为 2019-01-25 提交的版本,查看 最新版本

// ==UserScript==
// @name         去哪儿度假手机版支持复制文字
// @namespace    https://greasyfork.org/zh-CN/users/104201
// @version      0.1
// @description  手机版去哪儿页面支持复制文字,适用于去哪儿度假页面。原理很简单。就是每个元素都让他可编辑。
// @author       黄盐
// @match        https://touch.dujia.qunar.com/*
// @run-at       document-end
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    document.querySelectorAll("body *").forEach((ele)=>{
      ele.setAttribute("contentEditable",true);
    });
})();