Fake Image Alert for Craigslist

Detect whether images on Craigslist posts have been used elsewhere on the internet. Avoid fraud, scams and other trickery.

Vad är Fake Image Alert for Craigslist?

Fake Image Alert for Craigslist är en Chrome-tillägg utvecklad av berndverst, och dess huvudfunktion är "Detect whether images on Craigslist posts have been used elsewhere on the internet. Avoid fraud, scams and other trickery.".

Tilläggsskärmbilder

screenshot

Ladda ner Fake Image Alert for Craigslist-förlängningens CRX-fil

Ladda ner Fake Image Alert for Craigslist-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

                        Fake Image Alert for Craigslist is an extension that will indicate whether a given image can be found elsewhere on the internet. If so, you can with one click open the Google Image Search to discover where the image is being used.

This is helpful for avoiding fraud, scams and trickery when using Craigslist.

Source code at: https://github.com/berndverst/fakealert                    

Grundläggande Information om Tillägg

Namn Fake Image Alert for Craigslist Fake Image Alert for Craigslist
ID fgijkknnghdaljiilkiadcfhklneilmn
Officiell webbadress https://chrome.google.com/webstore/detail/fake-image-alert-for-crai/fgijkknnghdaljiilkiadcfhklneilmn
Beskrivning Detect whether images on Craigslist posts have been used elsewhere on the internet. Avoid fraud, scams and other trickery.
Filstorlek 8.84 KB
Antal Installationer 43
Aktuell Version 0.3
Senast Uppdaterad 2017-01-25
Publiceringsdatum 2017-01-25
Betyg 1.00/5 Totalt 1 Betyg
Utvecklare berndverst
Betalningssätt free
Tilläggswebbplats https://github.com/berndverst/fakealert
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fake Image Alert for Craigslist",
    "description": "Detect whether images on Craigslist posts have been used elsewhere on the internet. Avoid fraud, scams and other trickery.",
    "manifest_version": 2,
    "version": "0.3",
    "author": "Bernd Verst (@berndverst)",
    "permissions": [
        "https:\/\/images.google.com\/*",
        "https:\/\/www.google.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.craigslist.org\/*",
                "http:\/\/*.craigslist.org\/*"
            ],
            "js": [
                "imagechecker.js"
            ]
        }
    ]
}