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文件

下载PhotOSINT扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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';"
    }
}