Roblox Docs Search

Search the Roblox Creator Docs

Co to jest Roblox Docs Search?

Roblox Docs Search to rozszerzenie Chrome opracowane przez Stephen Leitnick, a jego główną funkcją jest „Search the Roblox Creator Docs”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Roblox Docs Search

Pobierz pliki rozszerzeń Roblox Docs Search w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Quickly search the Roblox Creator Docs for relevant APIs, documentation, and more!                    

Podstawowe informacje o rozszerzeniu

Nazwa Roblox Docs Search Roblox Docs Search
ID mejgpalbcgoooijaoomkcmcjeihhlehf
Oficjalny URL https://chromewebstore.google.com/detail/roblox-docs-search/mejgpalbcgoooijaoomkcmcjeihhlehf
Opis Search the Roblox Creator Docs
Rozmiar pliku 43.41 KB
Liczba instalacji 4,594
Aktualna Wersja 2.1.2
Ostatnia Aktualizacja 2023-11-25
Data Publikacji 2020-10-27
Ocena 4.83/5 Łącznie 24 Oceny
Deweloper Stephen Leitnick
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Roblox Docs Search",
    "version": "2.1.2",
    "description": "Search the Roblox Creator Docs",
    "author": "Stephen Leitnick",
    "action": {
        "default_popup": "popup\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/create.roblox.com\/docs\/*"
            ],
            "js": [
                "content\/content.js"
            ]
        }
    ],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+E",
                "mac": "Command+Shift+E",
                "chromeos": "Ctrl+Shift+E",
                "linux": "Ctrl+Shift+E"
            }
        }
    },
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "96": "icons\/96.png",
        "128": "icons\/128.png"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "host_permissions": [
        "*:\/\/*.github.com\/*",
        "*:\/\/github.com\/*",
        "*:\/\/objects.githubusercontent.com\/*"
    ],
    "content_security_policy": {
        "extension_pages": "default-src 'self'; script-src 'self' 'wasm-unsafe-eval'; connect-src https:\/\/*.github.com https:\/\/github.com https:\/\/objects.githubusercontent.com"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "{04926EA5-7531-4649-884C-1F0AC9C01679}",
            "strict_min_version": "109.0"
        }
    }
}