ThreatQ Extension

A Chrome Extension to give an analyst integration capabilities on any browser page, with ThreatQ

ThreatQ Extension란 무엇입니까?

ThreatQ Extension은(는) ThreatQ에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Chrome Extension to give an analyst integration capabilities on any browser page, with ThreatQ"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        The ThreatQ Chrome Extension gives analysts a quick and easy to use assistant while navigating web pages. The extension will allow analysts to perform quick lookups, automatically extract information from web pages, and ultimately, conduct thorough investigations.

Analysts will be able to quickly identify key pieces threat intelligence from web pages, and immediately figure out if they are relevant to their threat hunt or investigation. Additional context can be added to tracked threat objects and can be synced directly with a ThreatQ instance. Reports can be built directly from web pages and imported into ThreatQ, along with any relevant attribution, tags, and relationships.

The extension will be able to assist analysts in numerous ways, making them more efficient by giving them the tools they need to do their work.                    

확장 프로그램 기본 정보

이름 ThreatQ Extension ThreatQ Extension
ID kaoghaifdcjeaabfbdggomcpdgdfdjlm
공식 URL https://chromewebstore.google.com/detail/threatq-extension/kaoghaifdcjeaabfbdggomcpdgdfdjlm
설명 A Chrome Extension to give an analyst integration capabilities on any browser page, with ThreatQ
파일 크기 1.71 MB
설치 횟수 179
현재 버전 1.1.0
최근 업데이트 2023-06-21
출시 날짜 2020-04-29
평점 5.00/5 총 1 개의 평점
개발자 ThreatQ
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://threatq.com
도움말 페이지 URL https://support.threatq.com
개인정보 보호 정책 페이지 URL https://www.threatq.com/privacy-policy-chrome
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ThreatQ Extension",
    "description": "A Chrome Extension to give an analyst integration capabilities on any browser page, with ThreatQ",
    "version": "1.1.0",
    "action": {
        "default_icon": "logo_32.png",
        "default_title": "ThreatQ Extension",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "js\/index.js",
        "type": "module"
    },
    "icons": {
        "32": "logo_32.png",
        "48": "logo_48.png",
        "64": "logo_64.png",
        "128": "logo_128.png",
        "500": "logo_500.png"
    },
    "cross_origin_embedder_policy": {
        "value": "require-corp"
    },
    "cross_origin_opener_policy": {
        "value": "same-origin"
    },
    "permissions": [
        "contextMenus",
        "activeTab",
        "tabs",
        "notifications",
        "scripting",
        "clipboardWrite"
    ],
    "host_permissions": [
        "https:\/\/*\/*",
        ""
    ],
    "content_security_policy": {
        "extension_pages": "default-src 'self'; script-src 'self'; connect-src http:\/\/*:* https:\/\/*:*; style-src * 'unsafe-inline' 'self' blob:; img-src 'self' data:;"
    }
}