Search Params Remover
a browser extension helps you surf without utm_source and fbclid
Qu'est-ce que Search Params Remover ?
Search Params Remover est une extension Chrome développée par kong0107, et sa fonction principale est "a browser extension helps you surf without utm_source and fbclid".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Search Params Remover
Téléchargez les fichiers d'extension Search Params Remover au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Sick of the trailing "?fbclid=xxx" and "?utm_source=xxx" in the address bar? Try this! You can also add what you hate in the list within options page. Open Source: https://github.com/kong0107/search-params-remover
Informations de Base sur l'Extension
Nom | Search Params Remover |
ID | gfmcbkcihnobpalkdakmmecajahgnnol |
URL Officiel | https://chromewebstore.google.com/detail/search-params-remover/gfmcbkcihnobpalkdakmmecajahgnnol |
Description | a browser extension helps you surf without utm_source and fbclid |
Taille du Fichier | 11.73 KB |
Nombre d'Installations | 80 |
Version Actuelle | 0.2.3 |
Dernière Mise à Jour | 2022-08-25 |
Date de Publication | 2018-12-05 |
Évaluation | 3.50/5 Total 2 Évaluations |
Développeur | kong0107 |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Search Params Remover", "version": "0.2.3", "description": "a browser extension helps you surf without utm_source and fbclid", "author": "kong0107", "icons": { "128": "icon.png" }, "permissions": [ "storage", "declarativeNetRequest" ], "host_permissions": [ "*:\/\/*\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "run_at": "document_start", "js": [ "content.js" ] } ], "options_page": "options.html" } |