Genie History Search
Always find the page you are looking for, like magic.
Genie History Search란 무엇입니까?
Genie History Search은(는) https://geniehistorysearch.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Always find the page you are looking for, like magic."입니다.
확장 프로그램 스크린샷
Genie History Search 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Finding a particular page is not always easy. If you ever find yourself opening a lot of pages and losing track of where a certain page is, worry no more. If you ever close a page accidentally and can't find it, worry no more. If you ever can't find a page among all your bookmarks, worry no more. With Genie History Search, all your open pages, bookmarks and history of pages are always at your finger tips. Simply click the extension icon or press Ctrl+K (Cmd+K) and Genie is here to help you.
확장 프로그램 기본 정보
이름 | Genie History Search |
ID | knbjijibldffhfbhcponbgmndceoopml |
공식 URL | https://chromewebstore.google.com/detail/genie-history-search/knbjijibldffhfbhcponbgmndceoopml |
설명 | Always find the page you are looking for, like magic. |
파일 크기 | 3.39 MB |
설치 횟수 | 442 |
현재 버전 | 0.4.2 |
최근 업데이트 | 2017-11-28 |
출시 날짜 | 2017-11-27 |
평점 | 4.67/5 총 3 개의 평점 |
개발자 | https://geniehistorysearch.com |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://geniehistorysearch.com |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Genie History Search", "short_name": "Genie", "description": "Always find the page you are looking for, like magic.", "version": "0.4.2", "icons": { "128": "images\/genie-lamp-transparent-bg-128.png" }, "browser_action": { "default_icon": "images\/genie-lamp-transparent-bg-128.png", "default_popup": "app.html" }, "optional_permissions": [ "https:\/\/*.google.com\/*" ], "permissions": [ "tabs", "storage", "history", "bookmarks" ], "content_scripts": [ { "matches": [ "https:\/\/*.google.com\/*" ], "js": [ "content.bundle.js" ], "run_at": "document_end" } ], "background": { "page": "background.html", "persistent": true }, "offline_enabled": true, "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/www.google-analytics.com https:\/\/cdn.mxpnl.com\/libs\/mixpanel-2-latest.min.js; object-src 'self'", "web_accessible_resources": [ "images\/*", "new-tab.html", "app.html", "google.html" ], "commands": { "toggle-popup": { "suggested_key": { "default": "Ctrl+Shift+K", "windows": "Ctrl+Shift+K", "mac": "Ctrl+Shift+K", "chromeos": "Ctrl+Shift+K", "linux": "Ctrl+Shift+K" }, "description": "Toggle Popup" }, "_execute_browser_action": { "suggested_key": { "windows": "Ctrl+K", "mac": "Ctrl+K", "chromeos": "Ctrl+K", "linux": "Ctrl+K" } } } } |