Find+
Designed By wuaq.cn
Find+란 무엇입니까?
Find+은(는) wuaqgg에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Designed By wuaq.cn"입니다.
확장 프로그램 스크린샷
Find+ 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
利用强大的正则表达式来对页面进行搜索,在页面信息较多时快速找到自己需要的。原作者Chrome Regex Search-rshen 확장 프로그램 기본 정보
| 이름 | |
| ID | kbhhfmpihkhcjfbhbbmfppjmgcpbknpd |
| 공식 URL | https://chromewebstore.google.com/detail/find+/kbhhfmpihkhcjfbhbbmfppjmgcpbknpd |
| 설명 | Designed By wuaq.cn |
| 파일 크기 | 281 KB |
| 설치 횟수 | 45 |
| 현재 버전 | 1.0.1 |
| 최근 업데이트 | 2018-09-16 |
| 출시 날짜 | 2018-09-16 |
| 개발자 | wuaqgg |
| 이메일 | [email protected] |
| 결제 유형 | free |
| 지원되는 언어 | en,zh-CN |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Find+",
"version": "1.0.1",
"author": "wuaq.cn",
"default_locale": "zh_CN",
"description": "__MSG_description__",
"icons": {
"16": "icons\/icons_16.png",
"24": "icons\/icons_24.png",
"32": "icons\/icons_32.png",
"48": "icons\/icons_48.png",
"64": "icons\/icons_64.png",
"72": "icons\/icons_72.png",
"96": "icons\/icons_96.png",
"128": "icons\/icons_128.png",
"256": "icons\/icons_256.png"
},
"browser_action": {
"default_icon": {
"16": "icons\/icons_16.png",
"24": "icons\/icons_24.png",
"32": "icons\/icons_32.png",
"48": "icons\/icons_48.png",
"64": "icons\/icons_64.png",
"72": "icons\/icons_72.png",
"96": "icons\/icons_96.png",
"128": "icons\/icons_128.png",
"256": "icons\/icons_256.png"
},
"default_popup": "popup.html"
},
"permissions": [
"activeTab",
"storage"
],
"background": {
"scripts": [
"js\/background.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"file:\/\/*\/*"
],
"js": [
"js\/content.js"
]
}
],
"commands": {
"_execute_browser_action": {
"suggested_key": {
"windows": "Ctrl+Shift+F",
"mac": "Command+Shift+F",
"chromeos": "Ctrl+Shift+F",
"linux": "Ctrl+Shift+F"
}
}
},
"options_page": "options.html",
"manifest_version": 2
} | |