-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from Stephenito/master
Base version
- Loading branch information
Showing
29 changed files
with
1,201 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,26 @@ | ||
# chrome-crowdy | ||
Chrome extension useful to collect debug info during functional tests. | ||
#Chrome-crowdy | ||
|
||
Chrome-crowdy is an extension useful to record debug information about a site. | ||
|
||
It tracks the following data: | ||
- clicks; | ||
- errors; | ||
- storage; | ||
- cookies; | ||
- console logs; | ||
- all browser extensions installed. | ||
|
||
For more detailed information about the data tracked, see "json.txt" in "popup" folder. | ||
|
||
# Usage | ||
|
||
To use it, download it from the store (when it will be available), click on the browser action and click "Start recording". When you're done, click "Stop recording", and you can choose to print the .json file or not. | ||
There are 2 other useful buttons in the browser action popup: | ||
- "Show JSON pattern", which prints "json.txt"; | ||
- "Show actually recorded data", which lets you know which information has already been caught. There are also some options that let you filter the data. | ||
|
||
Enjoy! | ||
|
||
This extesion works on the following browsers: | ||
- Chrome; | ||
- Opera. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,52 @@ | ||
{ | ||
"manifest_version": 2, | ||
"name": "Click Recorder", | ||
"name": "Debug info Recorder", | ||
"version": "0.1", | ||
"description": "The extension that spies your tabs and clicks!", | ||
"description": "Get debug info while you're surfing on the net!", | ||
"browser_action": { | ||
"default_icon": "icons/icon.png", | ||
"default_title": "Recorder", | ||
"default_popup": "popup/popup.html" | ||
}, | ||
|
||
"icons": { | ||
"16": "icons/icon16.png", | ||
"48": "icons/icon48.png", | ||
"128": "icons/icon128.png" }, | ||
|
||
"permissions": [ | ||
"cookies", | ||
"management", | ||
"storage", | ||
"unlimitedStorage", | ||
"tabs", | ||
"downloads" | ||
"downloads", | ||
"webRequest", | ||
"debugger", | ||
"<all_urls>" | ||
], | ||
|
||
"web_accessible_resources": [ | ||
"popup/json.txt" | ||
], | ||
|
||
"content_scripts": [ | ||
{ | ||
"matches": [ | ||
"<all_urls>" | ||
], | ||
"js": ["lib/jquery-3.5.1.min.js","scripts/content.js"] | ||
"run_at": "document_start", | ||
"js": ["scripts/utility.js", "scripts/inject.js"] | ||
}, | ||
{ | ||
"matches": [ | ||
"<all_urls>" | ||
], | ||
"run_at": "document_idle", | ||
"js": ["scripts/content.js"] | ||
}], | ||
|
||
|
||
"background": { | ||
"scripts": ["scripts/background.js"], | ||
"persistent": false | ||
"scripts": ["scripts/utility.js", "scripts/background.js"] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<!DOCTYPE HTML> | ||
<html> | ||
<head> | ||
<title>Recorded JSON - iframe</title> | ||
<link rel="stylesheet" type="text/css" href="style.css"/> | ||
</head> | ||
<body> | ||
<div id="list"> | ||
<h3>events:</h3><pre id="events"></pre> | ||
<h3>starting_localStorage:</h3><pre id="starting_localStorage"></pre> | ||
<h3>starting_cookies:</h3><pre id="starting_cookies"></pre> | ||
<h3>extensions:</h3><pre id="extensions"></pre> | ||
</div> | ||
<script src="jsonActualFrame.js"></script> | ||
</body> | ||
<html> |
Oops, something went wrong.