If your team prefers not to display the "Screenshot Booster" link in the Marker.io widget or screenshots, you can easily remove it by modifying the widget's integration code. While there isn't a direct setting in the Marker.io app to disable this feature, a small adjustment to your website's HTML will do the trick.
If you'd like to see a direct setting for this feature, consider voting for it here.
Steps to remove the screenshot booster link
1. Locate the Widget Code in Your Website's HTML
Find the code snippet for the Marker.io widget, usually placed in the
<script>
section of your website's header.
2. Modify the Code Snippet
Add the
extension: false
property to the widget configuration. This change prevents the "Screenshot Booster" link from appearing.
Here’s how your updated code should look:
window.markerConfig = {
project: '<your_project_id>', // Replace with your project ID
source: 'snippet',
extension: false,
};
Note: Ensure that you keep the rest of the integration code unchanged to maintain the widget's functionality.
3. Update and Test
After making this change, update the code on your site.
The "Screenshot Booster" link will no longer be visible in the widget or screenshots. This change simplifies the user interface and minimizes potential distractions.