Regex Search with Jaum (초성검색)
웹사이트 상에서 한글 초성으로 검색하기. 작동하지 않으면 브라우저를 껐다 켜보세요. 설치한 뒤 Alt+Shift+F 를 누르거나 오른쪽 상단의 아이콘을 클릭하면 검색할 수 있습니다. 'Jaum (초성)' 체크박스를 체크하면 초성 검색…
Cos'è Regex Search with Jaum (초성검색)?
Regex Search with Jaum (초성검색) è un'estensione di Chrome sviluppata da blukat29, e la sua funzione principale è "웹사이트 상에서 한글 초성으로 검색하기. 작동하지 않으면 브라우저를 껐다 켜보세요. 설치한 뒤 Alt+Shift+F 를 누르거나 오른쪽 상단의 아이콘을 클릭하면 검색할 수 있습니다. 'Jaum (초성)' 체크박스를 체크하면 초성 검색…".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Regex Search with Jaum (초성검색)
Scarica i file di estensione Regex Search with Jaum (초성검색) in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
웹사이트 상에서 한글 초성으로 검색하기.
작동하지 않으면 브라우저를 껐다 켜보세요.
설치한 뒤 Alt+Shift+F 를 누르거나 오른쪽 상단의 아이콘을 클릭하면 검색할 수 있습니다.
'Jaum (초성)' 체크박스를 체크하면 초성 검색 기능을 사용할 수 있습니다.
"Regex Search" 확장프로그램에 한글 초성검색 기능을 추가했습니다. Informazioni di Base sull'Estensione
| Nome | |
| ID | daojlpmgecijlfpnfhochgdlhhdkpnef |
| URL Ufficiale | https://chromewebstore.google.com/detail/regex-search-with-jaum-%EC%B4%88%EC%84%B1/daojlpmgecijlfpnfhochgdlhhdkpnef |
| Descrizione | 웹사이트 상에서 한글 초성으로 검색하기. 작동하지 않으면 브라우저를 껐다 켜보세요. 설치한 뒤 Alt+Shift+F 를 누르거나 오른쪽 상단의 아이콘을 클릭하면 검색할 수 있습니다. 'Jaum (초성)' 체크박스를 체크하면 초성 검색… |
| Dimensione del File | 54.72 KB |
| Conteggio Installazioni | 89 |
| Versione Corrente | 1.8 |
| Ultimo Aggiornamento | 2017-01-16 |
| Data di Pubblicazione | 2017-01-16 |
| Valutazione | 5.00/5 Totale 2 Valutazioni |
| Sviluppatore | blukat29 |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/blukat29/regex-search |
| Lingue Supportate | ko |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Regex Search with Jaum (\ucd08\uc131\uac80\uc0c9)",
"version": "1.8",
"permissions": [
"tabs",
"http:\/\/*\/*"
],
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"file:\/\/\/*"
],
"css": [
"content\/content.css"
],
"js": [
"content\/jquery.min.js",
"content\/content.js"
]
}
],
"background": {
"scripts": [
"background\/background.js"
]
},
"options_page": "options\/options.html",
"browser_action": {
"default_icon": {
"19": "images\/icon19.png",
"38": "images\/icon38.png"
},
"default_popup": "popup\/popup.html"
},
"commands": {
"next": {
"suggested_key": {
"default": "Alt+Shift+N"
},
"description": "Go to the next search result"
},
"prev": {
"suggested_key": {
"default": "Alt+Shift+P"
},
"description": "Go to the previous search result"
},
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+Shift+F"
}
}
},
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
}
} | |