Favicons For Google Search
Puts favicons (according to Google s2 library) on Google search results.
Favicons For Google Search란 무엇입니까?
Favicons For Google Search은(는) Yemsh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Puts favicons (according to Google s2 library) on Google search results."입니다.
확장 프로그램 스크린샷
Favicons For Google Search 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Enhance your Google search experience with this extension. Puts the favicon of the website next to the site's name in the Google search page. Similar to how a search looks like when searching on a mobile device. If the website favicon is not available in the Google s2 library, the default globe favicon is used. *** 0.2 *** You can now choose between large and small favicon sizes. Large favicons will show up to the left of links. Small favicons will show up in the same location as the favicons on google search for mobile. *** 0.1 *** Favicons show up in same location as google search on mobile.
확장 프로그램 기본 정보
이름 | Favicons For Google Search |
ID | cmokoclkdghcohhmpohdhjahocjgjblp |
공식 URL | https://chromewebstore.google.com/detail/favicons-for-google-searc/cmokoclkdghcohhmpohdhjahocjgjblp |
설명 | Puts favicons (according to Google s2 library) on Google search results. |
파일 크기 | 23.46 KB |
설치 횟수 | 242 |
현재 버전 | 0.2 |
최근 업데이트 | 2021-03-23 |
출시 날짜 | 2021-03-03 |
평점 | 4.30/5 총 10 개의 평점 |
개발자 | Yemsh |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Favicons For Google Search", "version": "0.2", "description": "Puts favicons (according to Google s2 library) on Google search results.", "permissions": [ "storage" ], "host_permissions": [ "*:\/\/*.google.com\/*" ], "action": { "matches": [ "*:\/\/*.google.com\/*" ], "default_popup": "popup.html", "default_icon": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.google.com\/*" ], "js": [ "content.js" ], "css": [ "content.css" ], "run_at": "document_end" } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |