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文件

下載GoSearch擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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": [
                ""
            ]
        }
    ]
}