├── .idea ├── .gitignore ├── FridaManager.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── Plugins ├── Toast.js ├── dumpdex.js ├── hellofridamanager.js └── traceRegisterNative.js ├── README.md └── img ├── MagiskModule.png ├── Toast.png ├── dumpdex.png ├── gui1.png ├── gui2.png ├── helloworld.png ├── logo.png └── traceRegisterNative.png /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbinglengyue/FridaManager/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/FridaManager.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbinglengyue/FridaManager/HEAD/.idea/FridaManager.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbinglengyue/FridaManager/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbinglengyue/FridaManager/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbinglengyue/FridaManager/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbinglengyue/FridaManager/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbinglengyue/FridaManager/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /Plugins/Toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbinglengyue/FridaManager/HEAD/Plugins/Toast.js -------------------------------------------------------------------------------- /Plugins/dumpdex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbinglengyue/FridaManager/HEAD/Plugins/dumpdex.js -------------------------------------------------------------------------------- /Plugins/hellofridamanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbinglengyue/FridaManager/HEAD/Plugins/hellofridamanager.js -------------------------------------------------------------------------------- /Plugins/traceRegisterNative.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbinglengyue/FridaManager/HEAD/Plugins/traceRegisterNative.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbinglengyue/FridaManager/HEAD/README.md -------------------------------------------------------------------------------- /img/MagiskModule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbinglengyue/FridaManager/HEAD/img/MagiskModule.png -------------------------------------------------------------------------------- /img/Toast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbinglengyue/FridaManager/HEAD/img/Toast.png -------------------------------------------------------------------------------- /img/dumpdex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbinglengyue/FridaManager/HEAD/img/dumpdex.png -------------------------------------------------------------------------------- /img/gui1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbinglengyue/FridaManager/HEAD/img/gui1.png -------------------------------------------------------------------------------- /img/gui2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbinglengyue/FridaManager/HEAD/img/gui2.png -------------------------------------------------------------------------------- /img/helloworld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbinglengyue/FridaManager/HEAD/img/helloworld.png -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbinglengyue/FridaManager/HEAD/img/logo.png -------------------------------------------------------------------------------- /img/traceRegisterNative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanbinglengyue/FridaManager/HEAD/img/traceRegisterNative.png --------------------------------------------------------------------------------