MozTW 討論區 https://forum.moztw.org/ |
|
[MF] HideMenubar 相關討論 https://forum.moztw.org/viewtopic.php?f=11&t=18012 |
第 1 頁 (共 2 頁) |
發表人: | dora2002 [ 2007-03-17, 18:16 ] |
文章主題 : | [MF] HideMenubar 相關討論 |
Hide Menubar - 套件作者:yuoo2k - 套件首頁:站內討論文 - 套件最新版本:請詳見下載討論串 - 套件檔案大小:請詳見下載討論串 - 最後更新日期:請詳見下載討論串 - Firefox 之相容版本:1.5 - 3.0 - Flock 之相容版本:0.5 - 1.0 - 套件介紹:允許隱藏 Firefox 的主選單列。 這裡為討論, 下載請按這裡 |
發表人: | Merci chao [ 2007-04-05, 16:30 ] |
文章主題 : | |
我想請教一下 yuoo2k 大, 有沒有辦法在停用/移除後能自動顯示選單列呢? 因為我不知道勾選 "選單工具列" 時 Firefox 是怎樣儲存設定的 ![]() |
發表人: | yuoo2k [ 2007-04-05, 23:43 ] |
文章主題 : | |
要保存 collapsed 狀態,用程式碼做的話就是: 代碼: document.persist(toolbar.id, "collapsed");
也就是告訴 Firefox 要保留 id 為 toolbar.id 這個物件上的 collapsed 屬性, 這樣下次 Firefox 重新啟動後就會自動還原 id 為 toolbar.id 這個物件上的 collapsed 屬性值。 至於 "停用/移除後要能自動顯示選單列" 這個問題,我是採用反向思考... 不要去想怎麼還原的問題,而是想辦法防止 Firefox 去保存 menubar 上的 collapsed 屬性值。 這樣一來,移除套件後,選單列自然就會是在顯示的狀態。(因為選單列的 collapsed 永遠不會被保存) 然而不讓 Firefox 來保存 collapsed 狀態,卻要能保留使用者對選單列的隱藏與否, 我是改由套件來紀錄使用者對選單列的隱藏/顯示設定(在 about:config 中儲存一個 .autohide 設定), 然後在每次 Firefox 啟動後,用程式碼依照該 .autohide 設定來動態控制選單列的隱藏與否。 嗯~原理大致上就是這樣。 |
發表人: | Merci chao [ 2007-04-06, 18:23 ] |
文章主題 : | |
Oh, thanQ ![]() 原來有這麼簡單的方法的 因為 yuoo2k 大你使用 Firefox 隱藏功能的方法實在是太妙了, 所以不太想改 ![]() 我的想法是對 add-ons 介面作 overlay, 不知道會不會省一點 code ![]() |
發表人: | 1abcd [ 2007-04-18, 21:44 ] |
文章主題 : | |
我使用 IE Tab 瀏覽網頁時 alt 按鍵無效... |
發表人: | Merci chao [ 2007-04-18, 22:00 ] |
文章主題 : | |
1abcd 寫: 我使用 IE Tab 瀏覽網頁時 alt 按鍵無效... 很正常的現像吧 ![]() 記得 yuoo2k 大已經解釋過 n 次的了 |
發表人: | yuoo2k [ 2007-04-19, 14:01 ] |
文章主題 : | |
1abcd 寫: 我使用 IE Tab 瀏覽網頁時 alt 按鍵無效...
這個應該是 IETAB 的問題,PLUGIN 中的按鍵事件似乎必須經過 PLUGIN 轉送才能由 Firefox 接收到。 從 IETAB 的程式碼看起來應該是有轉,但是 Firefox 似乎沒收到...不過複合鍵 Alt+?? 之類的似乎又正常。 |
發表人: | 1abcd [ 2007-04-19, 20:19 ] |
文章主題 : | |
yuoo2k 寫: 1abcd 寫: 我使用 IE Tab 瀏覽網頁時 alt 按鍵無效... 這個應該是 IETAB 的問題,PLUGIN 中的按鍵事件似乎必須經過 PLUGIN 轉送才能由 Firefox 接收到。 從 IETAB 的程式碼看起來應該是有轉,但是 Firefox 似乎沒收到...不過複合鍵 Alt+?? 之類的似乎又正常。 |
發表人: | 訪客 [ 2007-04-19, 20:47 ] |
文章主題 : | |
裝下去後就被停用了 (那 1.5~3.0a4 是 ?) ![]() |
發表人: | Merci chao [ 2007-05-17, 18:15 ] |
文章主題 : | |
剛剛發現了一個 bug: 安裝了 AiOS 之後, 按 Alt 顯示選單工具列, 在上面按右鍵以顯示 "工具列右鍵選單" 指向 "屬性", 然後指向其他地方使 "屬性" 選單關閉 這時候選單工具列也自動隱藏了 |
發表人: | Merci chao [ 2007-05-18, 18:20 ] |
文章主題 : | |
想到原因了 ![]() if (m.localName == "menupopup" || m.localName == "popup") return true; |
發表人: | 1abcd [ 2007-05-24, 17:51 ] | ||
文章主題 : | |||
1abcd 寫: yuoo2k 寫: 1abcd 寫: 我使用 IE Tab 瀏覽網頁時 alt 按鍵無效... 這個應該是 IETAB 的問題,PLUGIN 中的按鍵事件似乎必須經過 PLUGIN 轉送才能由 Firefox 接收到。 從 IETAB 的程式碼看起來應該是有轉,但是 Firefox 似乎沒收到...不過複合鍵 Alt+?? 之類的似乎又正常。 files/alt_s_163.gif Hide Menubar 1.0.20070522 IE Tab 1.3.2.20070427
|
發表人: | yutrump [ 2007-08-25, 13:40 ] | ||
文章主題 : | |||
我現在改用AutoHide Menubar來替代Hide Menubar。 這樣一來,可以將書籤工具列移至上方,也可以少裝一個套件。如果你有興趣,可以試看看。 ![]()
|
發表人: | dora2002 [ 2007-08-25, 13:45 ] |
文章主題 : | |
yutrump 寫:
因為附加檔案功能掛了, 所以搬幾張圖片過來. 使用前 ![]() 使用後 ![]() ----- yutrump 大好久不見 ... |
發表人: | lucianolllg@gmail.com [ 2008-07-27, 23:28 ] |
文章主題 : | Bug in HideMenuBar 1.0.20080706 version 20080727 |
Mozilla Taiwan 討論區: Send private message privmsg.php?mode=post&u=108805 your version cause bug ......... loads .js into browser VERSION hide_menubar-1.0.20080706-fx.xpi ....... it is BUG ####################### The installation of both opens an archive with extension JS with the Firefox after the versions and verifies as if it holds the navigator with the two versions ####################### VERSION hide_menubar-1.0.20080610-fx.xpi ........ CORRECT VERSION..... PS Bug 447971 Submitted https://bugzilla.mozilla.org/show_bug.cgi?id=447971 https://bugzilla.mozilla.org/post_bug.cgi ############# After the installation of versao ( hide_menubar-1.0.20080706-fx.xpi ) occurs an alteration of the form as the navigator opens archives with the extension Javascript ....... *** .js in normal ......... the navigator .js of a page HTML of the navigator opens archives with extension inside; with version ( hide_menubar-1.0.20080706-fx.xpi ) passes not to open and to request…. to save the archive as…. what he is serious alteration of the Firefox ........ needs immediate attention… ( hide_menubar-1.0.20080706-fx.xpi ) installs version and tries to open a aquivo with the extension .js and verifies ......... ######## VERSION hide_menubar-1.0.20080706-fx.xpi ....... it is BUG VERSION hide_menubar-1.0.20080610-fx.xpi ........ CORRECT VERION..... ######## cause error load contens.js in Firefox; require attention bug; default original .... *.js view in forefox page in version 1.0.20080706.xpi *.js not display in Firefox page; occur. ........ save as... bug incorrec load in Firefox; your version https://addons.mozilla.org/en-US/firefo ... 610-fx.xpi ......... is correct version.... please; verific; in Firefox test;;;;; this ; https://addons.mozilla.org/en-US/firefo ... nstants.js in last version HideMenu bar in version 1.0.20080706-fx.xpi ..... *js load incorrect in browser; in version 1.0.20080610-fx.xpi ......... *.js load correct in web Firefox browser; excuses for introducing this error here ########## this version 1.0.20080610-fx.xpi........... is BUG in Firefox........ ***.js display naturaly in load page in Firefox Browser......... ........ occur...... error...... please correct .... YOUR VERSION 1.0.20080706-fx.xpi IT IS BUG Load ..........***.js....... not display in Firefox page html ...... occur ......... save as...... automaticaly...... it is error........ BUG........ ATTENTION IS REQUIRE.... ########## 1......... Archives with the extension .js ...... nao open as page HTML ....... occurs alteration and the navigator asks for TO SAVE the ARCHIVE AS 2. 3. ########### AFTER THE INSTALAÇAO OF THE VERSION hide_menubar-1.0.20080706-fx.xpi A SERIOUS ALTERATION IN THE FORM OCCURS AS THE NAVIGATOR OPENS ARCHIVES .JS… AS PAGINA FOR VISUALIZATION OF THE SAME Archives with the extension .js ...... nao open as page HTML ....... occurs alteration and the navigator asks for TO SAVE the ARCHIVE AS ############# CORRECT VERSION FOR Hide Menubar :: Firefox Add-ons https://addons.mozilla.org/en-US/firefox/addon/4762 https://addons.mozilla.org/en-US/firefo ... 610-fx.xpi ............ IT IS CORRECT VERSION ############## IN REINSTAL VERSION https://addons.mozilla.org/en-US/firefo ... 610-fx.xpi THIS PROBLEM IS SOLVED For Attention. For Attention. |
第 1 頁 (共 2 頁) | 所有顯示的時間為 UTC + 8 小時 |
Powered by phpBB® Forum Software © phpBB Group https://www.phpbb.com/ |