Similar Pages
Allows you to browse related pages.
Similar Pages란 무엇입니까?
Similar Pages은(는) zamfofex에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows you to browse related pages."입니다.
확장 프로그램 스크린샷
Similar Pages 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension gives you the ability to see webpages related to the one you are currently browsing. Whether you are looking at the documentation for your next programming project, trying to find your next favorite chocolate cake recipe, or even trying to research information for a school project, this extension can help you. By using Google Search technology, webpages from all throughout the Web are searched, and the relevant one that share a similar content to the one you are currently visiting are presented to you.
확장 프로그램 기본 정보
이름 | Similar Pages |
ID | lpedgppinmnpgdblfmjdppaeeldcpnil |
공식 URL | https://chromewebstore.google.com/detail/similar-pages/lpedgppinmnpgdblfmjdppaeeldcpnil |
설명 | Allows you to browse related pages. |
파일 크기 | 12.58 KB |
설치 횟수 | 1,111 |
현재 버전 | 1.1 |
최근 업데이트 | 2019-04-09 |
출시 날짜 | 2019-04-05 |
개발자 | zamfofex |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Similar Pages", "description": "Allows you to browse related pages.", "version": "1.1", "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "storage", "tabs" ], "browser_action": { "default_title": "Show Similar" }, "options_ui": { "page": "options.html", "open_in_tab": false }, "background": { "scripts": [ "default-options.js", "background.js" ], "persistent": false }, "web_accessible_resources": [ "main.html" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "always-injected.css" ], "js": [ "always-injected.js" ], "run_at": "document_start" } ], "incognito": "split", "browser_specific_settings": { "gecko": { "id": "[email protected]" } } } |