Roblox Docs Search
Search the Roblox Creator Docs
Roblox Docs Search란 무엇입니까?
Roblox Docs Search은(는) Stephen Leitnick에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Search the Roblox Creator Docs"입니다.
확장 프로그램 스크린샷
Roblox Docs Search 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Quickly search the Roblox Creator Docs for relevant APIs, documentation, and more!
확장 프로그램 기본 정보
이름 | Roblox Docs Search |
ID | mejgpalbcgoooijaoomkcmcjeihhlehf |
공식 URL | https://chromewebstore.google.com/detail/roblox-docs-search/mejgpalbcgoooijaoomkcmcjeihhlehf |
설명 | Search the Roblox Creator Docs |
파일 크기 | 43.41 KB |
설치 횟수 | 4,594 |
현재 버전 | 2.1.2 |
최근 업데이트 | 2023-11-25 |
출시 날짜 | 2020-10-27 |
평점 | 4.83/5 총 24 개의 평점 |
개발자 | Stephen Leitnick |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | 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" } } } |