Start at: Jan 16, 2024
A simple Chrome extension, See Your Real Engagement!, converts interactions on Twitter into a percentage relative to the number of your followers and the level of interaction.
When you go to any profile page all tweets this profile has will be a percentage relative to the number of its followers.
before
After
- Extension API: Chrome Extension V3
- Language: TypeScript
MutationObserver
const pageUpdateObserver = new MutationObserver(
(mutationsList: MutationRecord[]) => {
for (const mutation of mutationsList) {
if (
mutation.type === "childList" &&
mutation.addedNodes.length > 0
) {
const addedElement = mutation.addedNodes[0] as HTMLElement;
// Code...
}
}
}
);
pageUpdateObserver.observe(document.body, {
childList: true,
subtree: true,
});
- add options to pop-up
- add an option for every way % can be (what happens if less than 1%, ...)
- Get followers numbers when not on the profile page
- make it work on every page for every tweet
Uploading this extension to the extension web store requires additional money and effort, so if you want to use this extension, you can download it and use it locally on your device learn more
Check out my latest previous articles:
- Top 5 websites to sharpen your front-end skills.
- Why couldn't you get a job as a freelancer?
- Top 5 Icon websites for devs and designers!!!
- 30-Day React Learning Journey!
- professional links:
- Hire me:
- Blog: