mozilla 확장을 처음 사용합니다. 누구든지 나를 도울 수 있습니까?
특정 URL을 mozilla 확장자로 추가하는 방법을 알려주십시오.Mozilla Firefox 확장 프로그램의 특정 URL/웹 페이지에 버튼을 추가하는 방법
-1
A
답변
0
:
window.addEventListener("DOMContentLoaded", function(e) {
// Validate if you are in the right page
if (gBrowser.currentURI.spec.indexOf("google.com") != -1) {
// Validate if you don't already have the button in the page
if (!document.getElementById("MyCustomButton")) {
//get a page element where you want to position your button
var place = gBrowser.contentDocument.getElementById("gbqfbwa");
if (place != undefined) {
var htmlns = "http://www.w3.org/1999/xhtml";
// create an html button
var button = document.createElementNS(htmlns,"button");
button.id = "MyCustomButton";
button.innerHTML = "Go there";
// Append it to the page
place.appendChild(button);
}
}
}
}, false);
이은을 추가 "I 'm fuck lucky"버튼 오른쪽에있는 아이콘을 클릭하십시오.
1
페이지 DOM에 버튼을 추가 하시겠습니까? –
URL이 "하나"인지 테스트 하시겠습니까? - JS에서 URL을 얻는 방법 : http://stackoverflow.com/questions/1034621/get-current-url-with-javascript –
예 웹 페이지 (예 : Google 페이지)에 버튼을 배치하고 싶습니다. – mano