feat(new tool): URL Cleaner

URL Cleaner
Remove fbclip, utm params and other tracking parameters
This commit is contained in:
sharevb 2024-04-03 22:54:49 +02:00 committed by ShareVB
parent d3b32cc14e
commit e94cebfe19
5 changed files with 77 additions and 6 deletions

View file

@ -0,0 +1,12 @@
import { ClearAll } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'Url Cleaner',
path: '/url-cleaner',
description: 'Clean Ads tracker, UTM, Facebook and other ads provider parameters from an URL',
keywords: ['url', 'cleaner', 'utm', 'fbclip'],
component: () => import('./url-cleaner.vue'),
icon: ClearAll,
createdAt: new Date('2024-03-13'),
});