mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-05 05:47:10 -04:00
12 lines
415 B
TypeScript
12 lines
415 B
TypeScript
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'),
|
|
});
|