ShareMeNot

Prevents third-party buttons embedded by sites from tracking you until you actually click on them.

Τι είναι το ShareMeNot;

Το ShareMeNot είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://sharemenot.cs.washington.edu, και η κύρια λειτουργία του είναι "Prevents third-party buttons embedded by sites from tracking you until you actually click on them.".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης ShareMeNot

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

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

                        Did you know that buttons like these allow Facebook, Google, LinkedIn, and others to track your online browsing activities on *every site* that includes one of these buttons, even if you never click the buttons and (in some browsers) even if you have third-party cookies disabled?

ShareMeNot is a browser extension designed to prevent third-party buttons (such as Facebook's “Like” or Twitter's “tweet” button) embedded by sites across the Internet from tracking you until you actually click on them. Unlike traditional solutions, ShareMeNot does this without completely removing the buttons from the web experience.

Note that this extension is part of a research project and not targeted for general use. We welcome your feedback and will use it to improve our tool.                    

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

Όνομα ShareMeNot ShareMeNot
ID peeecebkcdlibcfllbpmmkhggflcppem
Επίσημο URL https://chromewebstore.google.com/detail/sharemenot/peeecebkcdlibcfllbpmmkhggflcppem
Περιγραφή Prevents third-party buttons embedded by sites from tracking you until you actually click on them.
Μέγεθος Αρχείου 127 KB
Αριθμός Εγκαταστάσεων 1,748
Τρέχουσα Έκδοση 1.2.3
Τελευταία Ενημέρωση 2014-06-09
Ημερομηνία Δημοσίευσης 2014-06-09
Αξιολόγηση 4.30/5 Συνολικά 10 Αξιολογήσεις
Προγραμματιστής https://sharemenot.cs.washington.edu
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://sharemenot.cs.washington.edu/
Διεύθυνση URL της Σελίδας Βοήθειας http://sharemenot.cs.washington.edu/FAQ.shtml
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ShareMeNot",
    "version": "1.2.3",
    "manifest_version": 2,
    "description": "Prevents third-party buttons embedded by sites from tracking you until you actually click on them.",
    "icons": {
        "16": "Icons\/16.png",
        "48": "Icons\/48.png",
        "128": "Icons\/128.png"
    },
    "page_action": {
        "default_icon": "Icons\/16.png",
        "default_title": "ShareMeNot blocked social media buttons on this page.",
        "default_popup": "Popup\/Popup.html"
    },
    "background": {
        "page": "Background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "Shared\/Assert.js",
                "Content Script\/Content.js"
            ]
        }
    ],
    "content_security_policy": "default-src 'self' ",
    "homepage_url": "http:\/\/sharemenot.cs.washington.edu\/",
    "minimum_chrome_version": "18",
    "options_page": "Options\/Options.html",
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "Content%20Script\/Content.css",
        "Content%20Script\/Replacement%20Buttons\/AddThis.svg",
        "Content%20Script\/Replacement%20Buttons\/Digg.svg",
        "Content%20Script\/Replacement%20Buttons\/Facebook.svg",
        "Content%20Script\/Replacement%20Buttons\/Google%20Plus.svg",
        "Content%20Script\/Replacement%20Buttons\/LinkedIn.svg",
        "Content%20Script\/Replacement%20Buttons\/Pinterest.svg",
        "Content%20Script\/Replacement%20Buttons\/StumbleUpon.svg",
        "Content%20Script\/Replacement%20Buttons\/Twitter.svg"
    ]
}