gitextract_au70of8y/ ├── LICENSE ├── README.md ├── release.sh ├── src/ │ ├── conf/ │ │ ├── conf.json │ │ ├── langSpeak.json │ │ ├── language.json │ │ └── searchText.txt │ ├── css/ │ │ ├── content.css │ │ ├── dmx_dialog.css │ │ ├── longman.css │ │ ├── main.css │ │ └── popup.css │ ├── html/ │ │ ├── favorite.html │ │ ├── history.html │ │ ├── more.html │ │ ├── popup.html │ │ ├── record.html │ │ ├── setting.html │ │ ├── speak.html │ │ └── video.html │ ├── js/ │ │ ├── background.js │ │ ├── common.js │ │ ├── content.js │ │ ├── db.js │ │ ├── dictionary/ │ │ │ ├── bing.js │ │ │ ├── cambridge.js │ │ │ ├── collins.js │ │ │ ├── dictcn.js │ │ │ ├── dictionary.js │ │ │ ├── dreye.js │ │ │ ├── etymonline.js │ │ │ ├── eudic.js │ │ │ ├── hjdict.js │ │ │ ├── iciba.js │ │ │ ├── lexico.js │ │ │ ├── longman.js │ │ │ ├── macmillan.js │ │ │ ├── merriam.js │ │ │ ├── oxford.js │ │ │ ├── rrdict.js │ │ │ ├── thefree.js │ │ │ ├── urban.js │ │ │ ├── vocabulary.js │ │ │ ├── wordreference.js │ │ │ └── youdao.js │ │ ├── favorite.js │ │ ├── frame.js │ │ ├── history.js │ │ ├── more.js │ │ ├── player.js │ │ ├── popup.js │ │ ├── record.js │ │ ├── setting.js │ │ ├── speak.js │ │ ├── translate/ │ │ │ ├── alibaba.js │ │ │ ├── baidu.js │ │ │ ├── bing.js │ │ │ ├── deepl.js │ │ │ ├── frdic.js │ │ │ ├── google.js │ │ │ ├── local.js │ │ │ ├── qq.js │ │ │ ├── so.js │ │ │ ├── sogou.js │ │ │ └── youdao.js │ │ └── video.js │ └── manifest.json └── tool/ ├── alibaba.html ├── baidu.html ├── bd.js ├── bing.html ├── google.html ├── lang.html ├── qq.html ├── sogou.html └── youdao.html