Search Params Remover
a browser extension helps you surf without utm_source and fbclid
Cos'è Search Params Remover?
Search Params Remover è un'estensione di Chrome sviluppata da kong0107, e la sua funzione principale è "a browser extension helps you surf without utm_source and fbclid".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Search Params Remover
Scarica i file di estensione Search Params Remover in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 Informazioni di Base sull'Estensione
| Nome | |
| ID | gfmcbkcihnobpalkdakmmecajahgnnol |
| URL Ufficiale | https://chromewebstore.google.com/detail/search-params-remover/gfmcbkcihnobpalkdakmmecajahgnnol |
| Descrizione | a browser extension helps you surf without utm_source and fbclid |
| Dimensione del File | 11.73 KB |
| Conteggio Installazioni | 80 |
| Versione Corrente | 0.2.3 |
| Ultimo Aggiornamento | 2022-08-25 |
| Data di Pubblicazione | 2018-12-05 |
| Valutazione | 3.50/5 Totale 2 Valutazioni |
| Sviluppatore | kong0107 |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
} | |