├── .gitignore ├── LICENSE ├── Projects ├── IChromeLink │ ├── IChromeLink.def │ ├── IChromeLink.vcxproj │ ├── IChromeLink.vcxproj.filters │ ├── ReadMe.txt │ ├── Release │ │ ├── IChromeLink.log │ │ ├── IChromeLink.tlog │ │ │ ├── CL.command.1.tlog │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── IChromeLink.lastbuildstate │ │ │ ├── IChromeLink.write.1u.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.delete.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ └── link.write.1.tlog │ │ └── IChromeLink.vcxproj.CopyComplete │ ├── ThrowInterface.cpp │ ├── ThrowInterface.h │ ├── dllmain.cpp │ ├── eclass.cpp │ ├── eclass.h │ ├── packages.config │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── chrome.sln └── core │ ├── IChromeLink.cpp │ └── IChromeLink.h ├── readme.md ├── 实验室 ├── IChromeLink.dll ├── cpprest140_2_9.dll ├── doc │ └── Chrome 外部填表详解 - 入门篇.docx ├── module │ ├── Chrome DevTools Protocol V1.20.ec │ └── 精易模块5.36.ec ├── sample │ ├── Alert测试.html │ ├── 按键测试.html │ └── 鼠标测试.html ├── src │ ├── Chrome 远程调试工具.bak │ ├── Chrome 远程调试工具.e │ ├── IChrome Link(接口).bak │ └── IChrome Link(接口).e └── 更新说明.txt └── 找不到DLL命令时.7z /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/LICENSE -------------------------------------------------------------------------------- /Projects/IChromeLink/IChromeLink.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/Projects/IChromeLink/IChromeLink.def -------------------------------------------------------------------------------- /Projects/IChromeLink/IChromeLink.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/Projects/IChromeLink/IChromeLink.vcxproj -------------------------------------------------------------------------------- /Projects/IChromeLink/IChromeLink.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/Projects/IChromeLink/IChromeLink.vcxproj.filters -------------------------------------------------------------------------------- /Projects/IChromeLink/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/Projects/IChromeLink/ReadMe.txt -------------------------------------------------------------------------------- /Projects/IChromeLink/Release/IChromeLink.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/Projects/IChromeLink/Release/IChromeLink.log -------------------------------------------------------------------------------- /Projects/IChromeLink/Release/IChromeLink.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/Projects/IChromeLink/Release/IChromeLink.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /Projects/IChromeLink/Release/IChromeLink.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/Projects/IChromeLink/Release/IChromeLink.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /Projects/IChromeLink/Release/IChromeLink.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/Projects/IChromeLink/Release/IChromeLink.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /Projects/IChromeLink/Release/IChromeLink.tlog/IChromeLink.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/Projects/IChromeLink/Release/IChromeLink.tlog/IChromeLink.lastbuildstate -------------------------------------------------------------------------------- /Projects/IChromeLink/Release/IChromeLink.tlog/IChromeLink.write.1u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/Projects/IChromeLink/Release/IChromeLink.tlog/IChromeLink.write.1u.tlog -------------------------------------------------------------------------------- /Projects/IChromeLink/Release/IChromeLink.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/Projects/IChromeLink/Release/IChromeLink.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /Projects/IChromeLink/Release/IChromeLink.tlog/link.delete.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/Projects/IChromeLink/Release/IChromeLink.tlog/link.delete.1.tlog -------------------------------------------------------------------------------- /Projects/IChromeLink/Release/IChromeLink.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/Projects/IChromeLink/Release/IChromeLink.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /Projects/IChromeLink/Release/IChromeLink.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/Projects/IChromeLink/Release/IChromeLink.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /Projects/IChromeLink/Release/IChromeLink.vcxproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Projects/IChromeLink/ThrowInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/Projects/IChromeLink/ThrowInterface.cpp -------------------------------------------------------------------------------- /Projects/IChromeLink/ThrowInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/Projects/IChromeLink/ThrowInterface.h -------------------------------------------------------------------------------- /Projects/IChromeLink/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/Projects/IChromeLink/dllmain.cpp -------------------------------------------------------------------------------- /Projects/IChromeLink/eclass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/Projects/IChromeLink/eclass.cpp -------------------------------------------------------------------------------- /Projects/IChromeLink/eclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/Projects/IChromeLink/eclass.h -------------------------------------------------------------------------------- /Projects/IChromeLink/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/Projects/IChromeLink/packages.config -------------------------------------------------------------------------------- /Projects/IChromeLink/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/Projects/IChromeLink/stdafx.cpp -------------------------------------------------------------------------------- /Projects/IChromeLink/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/Projects/IChromeLink/stdafx.h -------------------------------------------------------------------------------- /Projects/IChromeLink/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/Projects/IChromeLink/targetver.h -------------------------------------------------------------------------------- /Projects/chrome.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/Projects/chrome.sln -------------------------------------------------------------------------------- /Projects/core/IChromeLink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/Projects/core/IChromeLink.cpp -------------------------------------------------------------------------------- /Projects/core/IChromeLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/Projects/core/IChromeLink.h -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/readme.md -------------------------------------------------------------------------------- /实验室/IChromeLink.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/实验室/IChromeLink.dll -------------------------------------------------------------------------------- /实验室/cpprest140_2_9.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/实验室/cpprest140_2_9.dll -------------------------------------------------------------------------------- /实验室/doc/Chrome 外部填表详解 - 入门篇.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/实验室/doc/Chrome 外部填表详解 - 入门篇.docx -------------------------------------------------------------------------------- /实验室/module/Chrome DevTools Protocol V1.20.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/实验室/module/Chrome DevTools Protocol V1.20.ec -------------------------------------------------------------------------------- /实验室/module/精易模块5.36.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/实验室/module/精易模块5.36.ec -------------------------------------------------------------------------------- /实验室/sample/Alert测试.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/实验室/sample/Alert测试.html -------------------------------------------------------------------------------- /实验室/sample/按键测试.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/实验室/sample/按键测试.html -------------------------------------------------------------------------------- /实验室/sample/鼠标测试.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/实验室/sample/鼠标测试.html -------------------------------------------------------------------------------- /实验室/src/Chrome 远程调试工具.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/实验室/src/Chrome 远程调试工具.bak -------------------------------------------------------------------------------- /实验室/src/Chrome 远程调试工具.e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/实验室/src/Chrome 远程调试工具.e -------------------------------------------------------------------------------- /实验室/src/IChrome Link(接口).bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/实验室/src/IChrome Link(接口).bak -------------------------------------------------------------------------------- /实验室/src/IChrome Link(接口).e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/实验室/src/IChrome Link(接口).e -------------------------------------------------------------------------------- /实验室/更新说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/实验室/更新说明.txt -------------------------------------------------------------------------------- /找不到DLL命令时.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirino17/chromelink/HEAD/找不到DLL命令时.7z --------------------------------------------------------------------------------