URL Checker

Check if a URL is malicious or benign.

Vad är URL Checker?

URL Checker är en Chrome-tillägg utvecklad av Super02, och dess huvudfunktion är "Check if a URL is malicious or benign.".

Tilläggsskärmbilder

screenshot

Ladda ner URL Checker-förlängningens CRX-fil

Ladda ner URL Checker-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

                        This extension helps you distinguish if URL's you are accessing are malicious or benign. To use this extension you simply go to a page of your choice and click on the extension. Through the power of AI the extension will determine purely based on the URL if the website is Benign or Malicious.

Please note that this extension will not always accurately display if a URL is benign or malicious. This extension is only meant for fun/education purposes.                    

Grundläggande Information om Tillägg

Namn URL Checker URL Checker
ID dfmmocndemkjlgokckmpnhdpfcehpbpf
Officiell webbadress https://chromewebstore.google.com/detail/url-checker/dfmmocndemkjlgokckmpnhdpfcehpbpf
Beskrivning Check if a URL is malicious or benign.
Filstorlek 6 KB
Antal Installationer 47
Aktuell Version 1.0
Senast Uppdaterad 2023-08-31
Publiceringsdatum 2023-08-31
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare Super02
E-post [email protected]
Betalningssätt free
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "URL Checker",
    "description": "Check if a URL is malicious or benign.",
    "version": "1.0",
    "permissions": [
        "activeTab"
    ],
    "host_permissions": [
        "*:\/\/super02.me\/*"
    ],
    "action": {
        "default_popup": "index.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "index.html"
            ],
            "matches": [
                ""
            ]
        }
    ]
}