Mitaka

A browser extension for searching IP, domain, URL, hash, etc. via the context menu.

Mitaka क्या है?

Mitaka ninoseki द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A browser extension for searching IP, domain, URL, hash, etc. via the context menu."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Mitaka एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Mitaka is a browser extension for searching IP, domain, URL, hash, etc. via the context menu.

This extension can:
- Extract & refang IoC from a selected block of text.
-- e.g. example[.]com to example.com, test[at]example.com to test@example.com, hxxp://example.com to http://example.com, etc.
- Search / scan it on various engines.
-- e.g. VirusTotal, urlscan.io, Censys, Shodan, etc.

See https://github.com/ninoseki/mitaka for more details.                    

एक्सटेंशन की मूल जानकारी

नाम Mitaka Mitaka
ID bfjbejmeoibbdpfdbmbacmefcbannnbg
आधिकारिक URL https://chromewebstore.google.com/detail/mitaka/bfjbejmeoibbdpfdbmbacmefcbannnbg
विवरण A browser extension for searching IP, domain, URL, hash, etc. via the context menu.
फ़ाइल का आकार 463 KB
स्थापना संख्या 11,420
वर्तमान संस्करण 2.0.1
अंतिम अपडेट 2024-02-28
प्रकाशन तिथि 2020-07-02
रेटिंग 2.69/5 कुल 13 रेटिंग्स
डेवलपर ninoseki
ईमेल manabu.niseki@gmail.com
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/ninoseki/mitaka
सहायता पृष्ठ URL https://github.com/ninoseki/mitaka
गोपनीयता नीति पृष्ठ URL https://ninoseki.github.io/chrome-webstore/privacy_policy.html
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "icons": {
        "16": "icon16.plasmo.6c567d50.png",
        "32": "icon32.plasmo.76b92899.png",
        "48": "icon48.plasmo.aced7582.png",
        "64": "icon64.plasmo.8bb5e6e0.png",
        "128": "icon128.plasmo.3c1ed2d2.png"
    },
    "manifest_version": 3,
    "action": {
        "default_icon": {
            "16": "icon16.plasmo.6c567d50.png",
            "32": "icon32.plasmo.76b92899.png",
            "48": "icon48.plasmo.aced7582.png",
            "64": "icon64.plasmo.8bb5e6e0.png",
            "128": "icon128.plasmo.3c1ed2d2.png"
        }
    },
    "version": "2.0.1",
    "author": "ninoseki",
    "name": "Mitaka",
    "description": "A browser extension for searching IP, domain, URL, hash, etc. via the context menu.",
    "background": {
        "service_worker": "static\/background\/index.js"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [
        "contextMenus",
        "storage",
        "notifications"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contents.e02f0287.js"
            ],
            "css": []
        }
    ],
    "host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self';",
        "sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval'; child-src 'self';"
    }
}