Show That Link is a Chrome extension designed to reveal the real URL behind any link on a webpage. This is especially useful for identifying potentially malicious or fraudulent links before clicking on them.
- Displays the real URL of any link when you hover over it.
- Option to disable the extension on the current page to avoid interference during development or intensive link reading.
- Works in Progressive Web Apps (PWA) and with dynamically generated content.
- Clone or download this repository.
- Open Chrome and navigate to
chrome://extensions/
. - Enable "Developer mode" in the top right corner.
- Click on "Load unpacked" and select the folder where you downloaded the project.
- Install the extension as described in the installation section.
- Navigate to any webpage.
- Hover over any link to see the real URL in a small popup.
- To disable the functionality on the current page, click on the extension icon and use the toggle switch to enable/disable the extension.
Show-That-Link/
├── manifest.json
├── content.js
├── popup.js
├── popup.html
├── popup.css
└── icons/
├── icon16.png
├── icon48.png
└── icon128.png
- manifest.json: Main configuration file for the extension.
- content.js: Content script that handles the logic for displaying the real URL.
- popup.js: Script that handles the logic for the extension's popup.
- popup.html: HTML for the extension's popup.
- popup.css: CSS styles for the popup.
- icons/: Extension icons in various sizes.
To contribute to the development of this extension:
- Fork this repository.
- Create a branch for the feature you want to add (
git checkout -b feature/new-feature
). - Commit your changes (
git commit -am 'Add new feature'
). - Push the branch (
git push origin feature/new-feature
). - Open a Pull Request.