«google-chrome-app» 태그된 질문

3
Chrome 확장 메시지 전달 : 응답이 전송되지 않음
콘텐츠 스크립트와 확장 프로그램 사이에 메시지를 전달하려고합니다. 내용 스크립트에서 내가 가진 것입니다 chrome.runtime.sendMessage({type: "getUrls"}, function(response) { console.log(response) }); 그리고 백그라운드 스크립트에서 chrome.runtime.onMessage.addListener( function(request, sender, sendResponse) { if (request.type == "getUrls"){ getUrls(request, sender, sendResponse) } }); function getUrls(request, sender, sendResponse){ var resp = sendResponse; $.ajax({ url: "http://localhost:3000/urls", method: 'GET', success: function(d){ …


1
iOS Chrome이 문서의 잘못된 높이를 계산합니다
페이지의 전체 높이를 채우기 height: 100%;위해 html 및 body 태그에 사용 하며 브라우저를 닫았다가 다시 열 때까지 잘 작동합니다. (나는 모바일 장치의 문제로 인해 100vh를 사용하지 않습니다 https://nicolas-hoizey.com/2015/02/viewport-height-is-taller-than-the-visible-part-of-the-document-in -some-mobile-browsers.html ) 재현 단계 : iPhone의 Chrome에서 https://angelika94.github.io/rick/ 을 엽니 다 (탐색 이 포함 된 CSS Rick의 스크린 샷 ( 페이지 하단에 …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.