'firefox'에 해당되는 글 9건
- 2019.11.15 firefox hotkey
- 2013.08.21 파이어팍스용 딜리셔스 부가기능
- 2013.05.22 firefox searchplgins 생성 addon
- 2013.03.25 reminderfox 설정 변경
- 2012.10.16 fiefox16 에서 delicious addon 쓰기
- 2012.05.30 firefox12 도구 alt+L
- 2011.07.07 firefox 에서 링크를 눌러 이동했는데 주소창에 새 주소가 안 보일 때
- 2007.04.17 prototype $A is not defined, error 처리
- 2007.01.16 [firefox][addon]TamperData
https://addons.mozilla.org/ko/firefox/addon/add-to-delicious/
다른 버전은 firefox21 에서 잘 작동하지 않는다.
https://addons.mozilla.org/ko/firefox/addon/add-to-search-bar/
(https://firefox.maltekraus.de/extensions/add-to-search-bar)
주의: {searchTerms} 는 바꾸면 안된다.
사용법: 입력상자에 마우스 오른쪽 '검색도구에 추가하기(B)' 선택
remiderfox 의 기본 화면은 기념일이 나온다. 기념일 대신 '할 일들'로 첫 화면으로 바꾸려면?
왼쪽 상단의 select box 선택 -> 'Open Options Dialog' -> Mian Daillog 를 선택하면 된다.
여기서 적절하게 설정을 바꾼다.
다른 설정 변경은 아래를 참조
http://www.reminderfox.org/documentation-user-guide-options-and-preferences/#r6
도움말 -> 문제해결정보 -> 폴더열기
윈도 디렉토리 “extensions\{2fa4ed95-0317-4c6a-a74c-5f3e3912c1f9}” 에서 install.rdf 편집
em:maxVersion=”16.*” />
(출처 : http://ppmartin.wordpress.com/2012/10/13/getting-the-delicious-bookmarks-add-on-to-work-with-firefox-16/ )
firefox12 에서 '도구' 가 포함된 툴바가 안보인다. 보이게 하려면 alt + T.
도구 안에 livehttp 가 있으므로, livehttp 를 쓰려면 '도구'를 볼 수 있어야 한다.
return __method.apply(object, args.concat($A(arguments))
위와 같은 에러가 날때가 있다
(firebug 에서 prototype.js 를 쓸 때)
아래 처럼 패치하면 된다
52 Function.prototype.bindAsEventListener = function(object) {
53 var __method = this;
54 return function(event) {
55 if(typeof($A) == 'function'){ // <-- Added Firefox Fix
56 return __method.call(object, event || window.event);
57 }
58 }
59 }
출전은
http://www.skybyte.net/articles/prototype.js/