HarCreator
This tool runs as background process that tracks browsing activities in order to create HAR (HTTP Archive) file. It records all…
What is HarCreator?
HarCreator is a Chrome extension developed by https://harviewer.com, and its main feature is "This tool runs as background process that tracks browsing activities in order to create HAR (HTTP Archive) file. It records all…".
Extension Screenshots
Download HarCreator Extension CRX File
Download HarCreator 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
This tool runs as background process that tracks browsing activities in order to create HAR (HTTP Archive) file. It records all page navigations & requests done in the browser. Since this tool is created as part of an extension it DOES NOT have access to response content. It otherwise has access to most request timings and allows to easily track and report browser navigation. This extension is meant to be used alongside http://harviewer.com, which provides HAR analysis functionalities. **HAR files can contain private information and should be reviewed prior to sharing.
Extension Basic Information
Name | HarCreator |
ID | ffpkhdgegphahepginkdcaeojmeciphl |
Official URL | https://chromewebstore.google.com/detail/harcreator/ffpkhdgegphahepginkdcaeojmeciphl |
Description | This tool runs as background process that tracks browsing activities in order to create HAR (HTTP Archive) file. It records all… |
File Size | 385 KB |
Installation Count | 407 |
Current Version | 1.0 |
Last Updated | 2016-12-08 |
Publish Date | 2016-12-07 |
Rating | 5.00/5 Total 2 Ratings |
Developer | https://harviewer.com |
Payment Type | free |
Extension Website | http://www.harviewer.com |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "1.0", "name": "HarCreator", "permissions": [ "cookies", "webRequest", "webNavigation", "*:\/\/*\/*", "storage" ], "icons": { "16": "\/media\/harViewer.png", "48": "\/media\/harViewer.png", "128": "\/media\/harViewer.png" }, "browser_action": { "default_icon": "\/media\/harViewer.png", "default_popup": "dist\/build\/browser\/popup\/popup.html" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "background": { "scripts": [ "lib\/jquery-1.12.3.min.js", "lib\/system-polyfills.js", "lib\/system.js", "lib\/js.cookie.js", "lib\/store.js", "node_modules\/es6-shim\/es6-shim.min.js", "dist\/build\/bootstrap\/bootstrap.js" ] }, "externally_connectable": { "matches": [ "*:\/\/harviewer.com\/*", "*:\/\/localhost\/*" ] } } |