URL Tracking Stripper & Redirect Skipper

Increase the speed & privacy of your browsing. Skip/remove tracking parameters & redirects from URLs to keep them shorter & cleaner.

Τι είναι το URL Tracking Stripper & Redirect Skipper;

Το URL Tracking Stripper & Redirect Skipper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον newhouse, και η κύρια λειτουργία του είναι "Increase the speed & privacy of your browsing. Skip/remove tracking parameters & redirects from URLs to keep them shorter & cleaner.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης URL Tracking Stripper & Redirect Skipper

Λήψη αρχείων επέκτασης URL Tracking Stripper & Redirect Skipper σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Tracking Stripper: Some sites and email lists use links that contain url tracking tokens and tracking parameters (e.g. "utm_source=blah") in order to keep statistics on the source of traffic visiting their sites. URL Tracking Stripper will strip URL tracking parameters from URLs to keep them short and cleaner for sharing, bookmarking, instant messaging, etc.

This extension removes URL tracking parameters, URL tracking tokens, and UTM tracking tokens like Google Analytics™ (UTM) / Urchin™, Marketo™, Adobe Omniture SiteCatalyst™, MailChimp and others, with more being added as I find them or people ask me.

Redirect Skipper: Some sites (like Google Search results, links in Gmail emails, links in Facebook, or those that are part of affiliate networks) wrap the links on their pages in a quick redirect that is meant to cookie/track you before passing you on to the target URL. Often times this practice is disguised and not shown in the "hover" URL, but if you watch the network requests it sure does happen. 

This extension will detect such redirects that it knows about and skip them altogether, instead going straight to the target URL. Currently supports Google Search Results redirects, with more being added as I find them or people ask me.

Context Menu / Right-Click: The extension will also install a Context Menu ("right-click") item that will be available on "link-like" elements on web pages. When chosen, this menu item will copy the element URL, skip any known redirect it may contain, then strip any tracking parameters from the target URL, and finally make that cleansed URL available in your clipboard. This is handy for automatically cleaning up any links you want to copy, but without having to click on them first.

You can choose from several different "stripping methods" to suit your speed & privacy preferences.

The extension's icon will "activate" when a URL has been altered by this extension and it will show you what the original URL was. It also allows you to load that original URL unaltered if you like, which is useful if you are experiencing issues or want the full URL to load for whatever reason.

This is literally the Extension that I would want for this purpose and that's why I wrote it! Contact me for any requests or to add more trackers to block!                    

Βασικές Πληροφορίες Επέκτασης

Όνομα URL Tracking Stripper & Redirect Skipper URL Tracking Stripper & Redirect Skipper
ID flnagcobkfofedknnnmofijmmkbgfamf
Επίσημο URL https://chromewebstore.google.com/detail/url-tracking-stripper-red/flnagcobkfofedknnnmofijmmkbgfamf
Περιγραφή Increase the speed & privacy of your browsing. Skip/remove tracking parameters & redirects from URLs to keep them shorter & cleaner.
Μέγεθος Αρχείου 73.56 KB
Αριθμός Εγκαταστάσεων 4,784
Τρέχουσα Έκδοση 5.0.1
Τελευταία Ενημέρωση 2020-02-09
Ημερομηνία Δημοσίευσης 2020-02-09
Αξιολόγηση 3.12/5 Συνολικά 34 Αξιολογήσεις
Προγραμματιστής newhouse
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/newhouse/url-tracking-stripper
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/newhouse/url-tracking-stripper
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "URL Tracking Stripper & Redirect Skipper",
    "short_name": "URL Tracking Stripper & Redirect Skipper",
    "version": "5.0.1",
    "description": "Increase the speed & privacy of your browsing. Skip\/remove tracking parameters & redirects from URLs to keep them shorter & cleaner.",
    "homepage_url": "https:\/\/github.com\/newhouse\/url-tracking-stripper",
    "icons": {
        "128": "public\/images\/icon-128.png",
        "48": "public\/images\/icon-48.png"
    },
    "background": {
        "scripts": [
            "public\/js\/background.js"
        ]
    },
    "permissions": [
        "storage",
        "tabs",
        "contextMenus",
        "webRequest",
        "webRequestBlocking",
        "webNavigation",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "optional_permissions": [],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "page_action": {
        "default_title": "Nothing stripped on this page.",
        "default_icon": {
            "19": "public\/images\/icon-19.png",
            "38": "public\/images\/icon-38.png",
            "48": "public\/images\/icon-48.png"
        }
    }
}