Search Params Remover
a browser extension helps you surf without utm_source and fbclid
Wat is Search Params Remover?
Search Params Remover is een Chrome-extensie ontwikkeld door kong0107, en de belangrijkste functie is "a browser extension helps you surf without utm_source and fbclid".
Extensie Screenshots
Download het CRX-bestand van de extensie Search Params Remover
Download Search Params Remover-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 Basisinformatie over de Extensie
| Naam | |
| ID | gfmcbkcihnobpalkdakmmecajahgnnol |
| Officiële URL | https://chromewebstore.google.com/detail/search-params-remover/gfmcbkcihnobpalkdakmmecajahgnnol |
| Beschrijving | a browser extension helps you surf without utm_source and fbclid |
| Bestandsgrootte | 11.73 KB |
| Aantal Installaties | 80 |
| Huidige Versie | 0.2.3 |
| Laatst Bijgewerkt | 2022-08-25 |
| Publicatiedatum | 2018-12-05 |
| Beoordeling | 3.50/5 Totaal 2 Beoordelingen |
| Ontwikkelaar | kong0107 |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
} | |