PhotOSINT

OSINT tool for images. Scans page for images with EXIF metadata, while browsing. Also has context menu options for images.

PhotOSINT란 무엇입니까?

PhotOSINT은(는) Haris87에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "OSINT tool for images. Scans page for images with EXIF metadata, while browsing. Also has context menu options for images."입니다.

확장 프로그램 스크린샷

screenshot

PhotOSINT 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Open source OSINT tool for images. Scans page for images with EXIF metadata, while browsing, and shows all images found with EXIF data on popup window. Also provides context menu options for images such as reverse image search in different search engines, and metadata viewer.                    

확장 프로그램 기본 정보

이름 PhotOSINT PhotOSINT
ID gonhdjmkgfkokhkflfhkbiagbmoolhcd
공식 URL https://chromewebstore.google.com/detail/photosint/gonhdjmkgfkokhkflfhkbiagbmoolhcd
설명 OSINT tool for images. Scans page for images with EXIF metadata, while browsing. Also has context menu options for images.
파일 크기 8.23 MB
설치 횟수 3,067
현재 버전 0.4
최근 업데이트 2021-07-21
출시 날짜 2021-07-07
평점 5.00/5 총 2 개의 평점
개발자 Haris87
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Haris87/photosint
도움말 페이지 URL https://github.com/Haris87/photosint
개인정보 보호 정책 페이지 URL https://www.freeprivacypolicy.com/live/139ba3ea-b9d4-4046-89ce-05ffec85bdc8
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PhotOSINT",
    "version": "0.4",
    "description": "OSINT tool for images. Scans page for images with EXIF metadata, while browsing. Also has context menu options for images.",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs",
        "contextMenus"
    ],
    "host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "options_page": "",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/libs\/exif.js",
                "src\/libs\/enter-view.min.js",
                "content.js"
            ],
            "css": [
                "src\/styles\/content.css"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "128": "src\/icons\/icon_128.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "src\/icons\/icon_16.png",
        "24": "src\/icons\/icon_24.png",
        "32": "src\/icons\/icon_32.png",
        "64": "src\/icons\/icon_64.png",
        "128": "src\/icons\/icon_128.png"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'; img-src * data: blob: 'unsafe-inline'; default-src *  data: blob: 'unsafe-inline' 'unsafe-eval'; connect-src * data: blob: 'unsafe-inline';"
    }
}