Fake Image Alert for Craigslist

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

Fake Image Alert for Craigslist란 무엇입니까?

Fake Image Alert for Craigslist은(는) berndverst에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Detect whether images on Craigslist posts have been used elsewhere on the internet. Avoid fraud, scams and other trickery."입니다.

확장 프로그램 스크린샷

screenshot

Fake Image Alert for Craigslist 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Fake Image Alert for Craigslist Fake Image Alert for Craigslist
ID fgijkknnghdaljiilkiadcfhklneilmn
공식 URL https://chrome.google.com/webstore/detail/fake-image-alert-for-crai/fgijkknnghdaljiilkiadcfhklneilmn
설명 Detect whether images on Craigslist posts have been used elsewhere on the internet. Avoid fraud, scams and other trickery.
파일 크기 8.84 KB
설치 횟수 43
현재 버전 0.3
최근 업데이트 2017-01-25
출시 날짜 2017-01-25
평점 1.00/5 총 1 개의 평점
개발자 berndverst
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/berndverst/fakealert
지원되는 언어 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"
            ]
        }
    ]
}