Custom Chrome Extension
Budget: $30 – $250 USD
At a high level - this is an example of what this chrome extension will accomplish:
Create a manifest file: This file tells Chrome what permissions your extension needs and what files are required.
Write a content script: This script runs in the context of the webpage and can access its DOM and source code. The content script should check for the presence of the keyword in the source code and then refresh the page using location.reload().
Add an event listener: The content script should listen for changes in the source code and refresh the page if the keyword appears.
Add a background script: This script runs in the background and communicates with the content script. It should send messages to the content script to start or stop refreshing the page.
Create a manifest file: This file tells Chrome what permissions your extension needs and what files are required.
Write a content script: This script runs in the context of the webpage and can access its DOM and source code. The content script should check for the presence of the keyword in the source code and then refresh the page using location.reload().
Add an event listener: The content script should listen for changes in the source code and refresh the page if the keyword appears.
Add a background script: This script runs in the background and communicates with the content script. It should send messages to the content script to start or stop refreshing the page.