Search Params Remover
a browser extension helps you surf without utm_source and fbclid
Vad är Search Params Remover?
Search Params Remover är en Chrome-tillägg utvecklad av kong0107, och dess huvudfunktion är "a browser extension helps you surf without utm_source and fbclid".
Tilläggsskärmbilder
Ladda ner Search Params Remover-förlängningens CRX-fil
Ladda ner Search Params Remover-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 Grundläggande Information om Tillägg
| Namn | |
| ID | gfmcbkcihnobpalkdakmmecajahgnnol |
| Officiell webbadress | https://chromewebstore.google.com/detail/search-params-remover/gfmcbkcihnobpalkdakmmecajahgnnol |
| Beskrivning | a browser extension helps you surf without utm_source and fbclid |
| Filstorlek | 11.73 KB |
| Antal Installationer | 80 |
| Aktuell Version | 0.2.3 |
| Senast Uppdaterad | 2022-08-25 |
| Publiceringsdatum | 2018-12-05 |
| Betyg | 3.50/5 Totalt 2 Betyg |
| Utvecklare | kong0107 |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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"
} | |