Skip to content

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.

License

Notifications You must be signed in to change notification settings

ymhaah/Reach-Ratio

Repository files navigation

Reach Ratio - See Your Real Engagement!

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.

Screenshot

before

before

After

After

Built with

  • Extension API: Chrome Extension V3
  • Language: TypeScript

Working Principle

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,
});

To Do

  • 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

From the developer

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

Useful resources

Check out my latest previous articles:

Author

Free Services

About

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.

Topics

Resources

License

Stars

Watchers

Forks