outlier-earnings-masker-2
v2.0.0
Published
Chrome extension to obfuscate dollar amounts on Outlier.ai for privacy or testing purposes.
Downloads
16
Readme
Outlier.ai Earnings Masker - Chrome Extension
This Chrome extension obfuscates dollar amounts on the Outlier.ai website, replacing them with ***
for privacy or testing purposes. The extension dynamically detects dollar amounts and rates like $50/hr
and replaces or hides them based on your configuration.
Features
- Replaces dollar amounts with
***
(e.g.,$2167.20
→***
). - Replaces amounts followed by
/hr
(e.g.,$50/hr
→***
). - Handles dynamically loaded content.
Installation
Manual Installation
Download the Extension:
- Download the latest release ZIP file from the Releases page.
Unpack the ZIP:
- Extract the ZIP file to a local folder.
Install the Extension in Chrome:
- Open Chrome and navigate to
chrome://extensions/
. - Enable Developer mode (toggle in the top-right corner).
- Click Load unpacked and select the folder where you extracted the extension.
- Open Chrome and navigate to
Use the Extension:
- Visit the Outlier.ai website, and the extension will automatically replace or hide dollar amounts.
Usage
Once installed, the extension runs automatically when you visit Outlier.ai and replaces dollar amounts or hourly rates (/hr
) based on the current configuration.
Adding New Selectors
If you need to target new elements or selectors in the future:
Edit
content.js
:- Open the
content.js
file inside the extension folder. - Identify the new elements on the page (e.g.,
div
,span
, etc.) by inspecting the page using Chrome DevTools.
- Open the
Add the Selector:
- In
content.js
, locate the functionreplaceDollarSignsAndAmounts()
. - Add your new selector to the existing list like so:
const newElements = document.querySelectorAll('.your-new-selector');
- Ensure your selector is appropriately formatted based on class names, IDs, or element types.
- In
Rebuild the Extension:
- Follow the steps in the Installation section to reload the updated extension in Chrome.
Contributing
Feel free to fork the repository, add new features, and submit pull requests. For major changes, please open an issue first to discuss your ideas.
License
This project is licensed under the MIT License - see the LICENSE file for details.
This version includes the updated repository link: https://github.com/NymphSolutions/wizard-tools.
Let me know if you need any further adjustments!