GoSearch

The official GoSearch.ai extension for resource searching

GoSearch란 무엇입니까?

GoSearch은(는) GoLinks에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The official GoSearch.ai extension for resource searching"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        GoSearch allows teams to search their connected cloud resources on their teams GoSearch.ai account. Giving teams a single point of access to their teams resources like Notion, Confluence, Jira, and more.                    

확장 프로그램 기본 정보

이름 GoSearch GoSearch
ID meajdheoainofgpcckdeijpnfjfipdni
공식 URL https://chromewebstore.google.com/detail/gosearch/meajdheoainofgpcckdeijpnfjfipdni
설명 The official GoSearch.ai extension for resource searching
파일 크기 2.19 MB
설치 횟수 81
현재 버전 1.1.9
최근 업데이트 2024-02-28
출시 날짜 2023-04-10
평점 5.00/5 총 2 개의 평점
개발자 GoLinks
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.gosearch.ai/
개인정보 보호 정책 페이지 URL https://www.golinks.io/privacy.php
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GoSearch",
    "description": "The official GoSearch.ai extension for resource searching",
    "homepage_url": "https:\/\/www.gosearch.ai",
    "version": "1.1.9",
    "icons": {
        "16": "icons\/icon_16.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "action": {
        "default_icon": "icons\/icon_48.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "commands": {
        "toggleGosearch": {
            "suggested_key": {
                "default": "Ctrl+Space",
                "mac": "Alt+Space"
            },
            "description": "Toggle GoSearch popup"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.gosearch.ai\/*"
            ],
            "js": [
                "identifier.js"
            ],
            "run_at": "document_start"
        }
    ],
    "chrome_url_overrides": {
        "newtab": "new_tab.html"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; connect-src https:\/\/*.gosearch.ai https:\/\/gosearch.ai https:\/\/*.golinks.io https:\/\/golinks.io; object-src 'self'; font-src 'self';"
    },
    "host_permissions": [
        "*:\/\/*.gosearch.ai\/*",
        "*:\/\/gosearch.ai\/*",
        "*:\/\/*.golinks.io\/*",
        "*:\/\/golinks.io\/*",
        "*:\/\/google.com\/*"
    ],
    "omnibox": {
        "keyword": "gs"
    },
    "permissions": [
        "cookies",
        "activeTab",
        "contextMenus",
        "scripting",
        "tabs",
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/icon_16.png",
                "popup.html",
                "new_tab.html",
                "images\/gosearch-extension-shortcut.svg"
            ],
            "matches": [
                ""
            ]
        }
    ]
}