PhotOSINT

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

Wat is PhotOSINT?

PhotOSINT is een Chrome-extensie ontwikkeld door Haris87, en de belangrijkste functie is "OSINT tool for images. Scans page for images with EXIF metadata, while browsing. Also has context menu options for images.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie PhotOSINT

Download PhotOSINT-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam PhotOSINT PhotOSINT
ID gonhdjmkgfkokhkflfhkbiagbmoolhcd
Officiële URL https://chromewebstore.google.com/detail/photosint/gonhdjmkgfkokhkflfhkbiagbmoolhcd
Beschrijving OSINT tool for images. Scans page for images with EXIF metadata, while browsing. Also has context menu options for images.
Bestandsgrootte 8.23 MB
Aantal Installaties 3,067
Huidige Versie 0.4
Laatst Bijgewerkt 2021-07-21
Publicatiedatum 2021-07-07
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar Haris87
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/Haris87/photosint
Help Pagina-URL https://github.com/Haris87/photosint
URL van de Privacybeleid Pagina https://www.freeprivacypolicy.com/live/139ba3ea-b9d4-4046-89ce-05ffec85bdc8
Ondersteunde Talen 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';"
    }
}