Google+ Hovercard Blocker
Hide away the Google Plus profile Hovercards that are shown when you hover the mouse above anyone's name.
Google+ Hovercard Blocker란 무엇입니까?
Google+ Hovercard Blocker은(는) Sloy에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hide away the Google Plus profile Hovercards that are shown when you hover the mouse above anyone's name."입니다.
확장 프로그램 스크린샷
Google+ Hovercard Blocker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
¿Cansado de los molestos popups que aparecen en Google Plus con el perfil de un usuario al pasar el ratón sobre su nombre? Esta extensión es para ti. Ocúltalos por completo para que no te vuelvan a molestar más. Sin configuración ni historias, instalar y listo. También quita las tarjetas de recomendación de páginas y "Quizás conozcas a". ¡Luchando por un stream limpio!
확장 프로그램 기본 정보
이름 | |
ID | bkkdeoofobjcnolnilhiapnfjgmcmidi |
공식 URL | https://chrome.google.com/webstore/detail/google+-hovercard-blocker/bkkdeoofobjcnolnilhiapnfjgmcmidi |
설명 | Hide away the Google Plus profile Hovercards that are shown when you hover the mouse above anyone's name. |
파일 크기 | 21.55 KB |
설치 횟수 | 18 |
현재 버전 | 1.3.2 |
최근 업데이트 | 2013-10-15 |
출시 날짜 | 2013-10-15 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | Sloy |
결제 유형 | free |
지원되는 언어 | en,es |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_ext_name__", "description": "__MSG_ext_description__", "version": "1.3.2", "default_locale": "en", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/plus.google.com\/*" ], "css": [ "mystyles.css" ], "js": [ "myscript.js" ], "all_frames": true } ], "page_action": { "default_icon": { "19": "icon19.png", "38": "icon38.png" }, "default_title": "__MSG_action_title__" }, "permissions": [ "tabs", "http:\/\/*\/*" ] } |