Input Recorder
Record the values of the input elements(text boxes, drop-down boxes, check boxes etc) , so you can restored them in future.
What is Input Recorder?
Input Recorder is a Chrome extension developed by https://manxisuo.tk, and its main feature is "Record the values of the input elements(text boxes, drop-down boxes, check boxes etc) , so you can restored them in future.".
Extension Screenshots
Download Input Recorder Extension CRX File
Download Input Recorder extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
1. 记录网站的用户名和密码,下次登录时不用再重新输入。 2. 记录表单中的数据,以后可以瞬间充填。 对web开发、测试人员更加有用。
Extension Basic Information
Name | Input Recorder |
ID | endkfhomobijnknngmdfcooaafdmfbfj |
Official URL | https://chromewebstore.google.com/detail/input-recorder/endkfhomobijnknngmdfcooaafdmfbfj |
Description | Record the values of the input elements(text boxes, drop-down boxes, check boxes etc) , so you can restored them in future. |
File Size | 116 KB |
Installation Count | 29 |
Current Version | 1.0.6 |
Last Updated | 2013-11-18 |
Publish Date | 2013-11-18 |
Rating | 4.00/5 Total 1 Ratings |
Developer | https://manxisuo.tk |
Payment Type | free |
Extension Website | http://manxisuo.tk/2013/11/10/input-recorder/ |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extName__", "description": "__MSG_extDescription__", "version": "1.0.6", "default_locale": "en", "icons": { "16": "img\/16.png", "48": "img\/48.png", "128": "img\/128.png" }, "browser_action": { "default_icon": "img\/48.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "style\/injected.css" ], "js": [ "script\/jquery-1.9.1.min.js", "script\/injected.js" ] } ], "permissions": [ "tabs" ], "web_accessible_resources": [ "script\/jquery.min.map" ], "options_page": "options.html" } |