feat: Add Chrome Network Monitor extension with popup UI and request handling

- Implemented popup.html for user interface with search functionality and request display.
- Developed popup.js to manage search items, matched requests, and clipboard operations.
- Created mergeConflictManager.js for automated git operations in specified repositories.
- Added projects.txt to maintain a list of relevant projects.
- Introduced pushReleaseBranches.js for managing release branches across multiple projects.
- Developed releasePrepper.js to prepare projects for release with branch management.
- Created stashUpdater.js to update git origins for projects.
- Added updatedProjects.txt to track projects that have been updated.
This commit is contained in:
Greg Jacobs
2026-01-26 16:18:42 -05:00
parent 6702f04050
commit f7d928506a
82 changed files with 9285 additions and 122 deletions

View File

@@ -1,32 +1,34 @@
{
"name": "memorypalace",
"version": "0.0.1",
"description": "This project contains several files that perform various tasks. Here's a brief overview of each file:",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src --ext .js",
"lint:fix": "eslint src --ext .js --fix",
"format": "prettier src --write --ignore-unknown",
"readme": "node src/utils/git/updateReadme.js",
"bookmark": "node src/utils/bookmarkletMaker.js"
},
"repository": {
"type": "git",
"url": "https://stash.mgmt.local/users/greg.jacobs/repos/memorypalace/browse"
},
"author": "Greg Jacobs",
"license": "ISC",
"devDependencies": {
"eslint": "^9.4.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.3.0"
},
"dependencies": {
"axios": "^1.7.2",
"dotenv": "^16.4.5",
"json": "^11.0.0"
}
}
"name": "memorypalace",
"version": "0.1.0",
"description": "This project contains several files that perform various tasks. Here's a brief overview of each file:",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src --ext .js",
"lint:fix": "eslint src --ext .js --fix",
"format": "prettier src --write --ignore-unknown",
"readme": "node src/utils/git/updateReadme.js",
"bookmark": "node src/utils/bookmarkletMaker.js",
"mergeConflicts": "node src/utils/oddsNends/mergeConflictManager.js"
},
"repository": {
"type": "git",
"url": "https://stash.mgmt.local/users/greg.jacobs/repos/memorypalace/browse"
},
"author": "Greg Jacobs",
"license": "ISC",
"devDependencies": {
"eslint": "^9.4.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.3.0"
},
"dependencies": {
"axios": "^1.7.2",
"clipboardy": "^4.0.0",
"dotenv": "^16.4.5",
"json": "^11.0.0"
}
}