<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-3768925651175909456</id><updated>2024-09-12T22:21:38.350+08:00</updated><category term="Blogger"/><category term="Firefox擴充套件"/><category term="Stylish"/><category term="Gmail"/><category term="Google Chrome"/><category term="Greasemonkey"/><title type='text'>SECI 知識轉換</title><subtitle type='html'>有關Firefox、Blogger及Google服務等資訊</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://seciblog.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3768925651175909456/posts/default?redirect=false'/><link rel='alternate' type='text/html' href='http://seciblog.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Alec</name><uri>http://www.blogger.com/profile/01463694164725658947</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='31' src='http://3.bp.blogspot.com/_3XmLB7Obrrg/SrMgkHxdMmI/AAAAAAAAAv4/BTn-IA3z2Rk/S220/Xbox360.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>6</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-3768925651175909456.post-7134523937826391566</id><published>2010-08-21T13:54:00.004+08:00</published><updated>2010-08-21T14:05:34.836+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Gmail"/><category scheme="http://www.blogger.com/atom/ns#" term="Stylish"/><title type='text'>[Gmail] 恢復Gmail「未讀取」等按鈕選項</title><content type='html'>在Gmail最近一次的改板中，把原本可選擇「已讀取」、「未讀取」等選項按鈕，全部移至上方選項中(如下圖)，雖說這項改變使Gmail的樣式變得較為美觀，但也使得要選取「未讀取」等按鈕時，變成需要點選兩次才能成功選取，感覺有點多餘且麻煩。    &lt;br /&gt;
&lt;img alt=&quot;Gmailselect.jpg&quot; src=&quot;http://i640.photobucket.com/albums/uu125/aidasit/Blog/Gmailselect.jpg&quot; style=&quot;display: block; float: none; margin-left: auto; margin-right: auto;&quot; title=&quot;Gmailselect.jpg&quot; /&gt;&lt;br /&gt;
原本從網路上有找到可恢復原本格式的&lt;a href=&quot;http://seciblog.blogspot.com/2010/07/fx-greasemonkey.html&quot; target=&quot;_blank&quot; title=&quot; http://seciblog.blogspot.com/2010/07/fx-greasemonkey.html &quot;&gt;GM&lt;/a&gt;腳本(&lt;a href=&quot;http://userscripts.org/scripts/show/83525&quot; target=&quot;_blank&quot; title=&quot; http://userscripts.org/scripts/show/83525 &quot;&gt;Gmail - Restore &quot;Select&quot; line including &quot;Unread&quot; link&lt;/a&gt;)，但最近不知為何原因失效了，因此又從網路上尋找到相同功能的&lt;a href=&quot;http://seciblog.blogspot.com/2010/01/fx-stylish.html&quot; target=&quot;_blank&quot; title=&quot; http://seciblog.blogspot.com/2010/01/fx-stylish.html &quot;&gt;Stylish&lt;/a&gt;樣式，以下為此樣式語法，請自行複製儲存：&lt;br /&gt;
&lt;code&gt;/*Gmail: Select &quot;links&quot; restored*/ &lt;br /&gt;
@-moz-document domain(&quot;mail.google.com&quot;) { &lt;br /&gt;
/* move search results text down below Select links */      &lt;br /&gt;
.A1.D.E .yS { padding-top: 25px !important; } &lt;br /&gt;
/* same height as before (more or less) */      &lt;br /&gt;
.A1.D.E .nH { height: 22px !important; } &lt;br /&gt;
.A1.D.E &amp;gt; .nH &amp;gt; .nH.Cq &amp;gt; div &amp;gt; div &amp;gt; .J-M.AW:nth-child(7) {      &lt;br /&gt;
position: relative !important;       &lt;br /&gt;
top: -4px !important;       &lt;br /&gt;
left: 15px !important; /* line up with &#39;Search ...&#39; */       &lt;br /&gt;
display: inline !important;       &lt;br /&gt;
height: 16px !important;       &lt;br /&gt;
}       &lt;br /&gt;
.A1.D.E &amp;gt; .nH &amp;gt; .nH.Cq &amp;gt; div &amp;gt; div &amp;gt; .J-M.AW:nth-child(7) &amp;gt; .SK:before {       &lt;br /&gt;
content: &quot;Select: &quot; ; font-family: Arial ; &lt;span style=&quot;color: red;&quot;&gt;color:White;        &lt;br /&gt;
&lt;/span&gt;}       &lt;br /&gt;
.A1.D.E &amp;gt; .nH &amp;gt; .nH.Cq &amp;gt; div &amp;gt; div &amp;gt; .J-M.AW:nth-child(7) &amp;gt; .SK {       &lt;br /&gt;
-moz-box-shadow: none !important;       &lt;br /&gt;
-webkit-box-shadow: none !important;       &lt;br /&gt;
padding-top: 4px !important;       &lt;br /&gt;
padding-bottom: 2px !important;       &lt;br /&gt;
background-color: transparent !important;       &lt;br /&gt;
font-family: Verdana !important;       &lt;br /&gt;
&lt;span style=&quot;color: red;&quot;&gt;color: White !important;&lt;/span&gt; &lt;br /&gt;
}      &lt;br /&gt;
.A1.D.E &amp;gt; .nH &amp;gt; .nH.Cq &amp;gt; div &amp;gt; div &amp;gt; .J-M.AW:nth-child(7) &amp;gt; .SK.AX &amp;gt; .J-N {       &lt;br /&gt;
display: inline-block !important;       &lt;br /&gt;
padding-left: 8px !important;       &lt;br /&gt;
padding-right: 8px !important;       &lt;br /&gt;
-moz-border-radius: 3px !important;       &lt;br /&gt;
-webkit-border-radius: 3px !important; /* WebKit */       &lt;br /&gt;
cursor: pointer !important;       &lt;br /&gt;
}       &lt;br /&gt;
.A1.D.E &amp;gt; .nH &amp;gt; .nH.Cq &amp;gt; div &amp;gt; div &amp;gt; .J-M.AW:nth-child(7) &amp;gt; .SK.AX &amp;gt; .J-N:hover {       &lt;br /&gt;
background-color:#406480 !important;       &lt;br /&gt;
color:white !important;       &lt;br /&gt;
}       &lt;br /&gt;
/* optional bg: sort of a button look (dark/light bg with light/dark text) * /       &lt;br /&gt;
.A1.D.E &amp;gt; .nH &amp;gt; .nH.Cq &amp;gt; div &amp;gt; div &amp;gt; .J-M.AW:nth-child(7) &amp;gt; .SK.AX &amp;gt; .J-N:not(:hover) {       &lt;br /&gt;
background-color: #406480 !important;       &lt;br /&gt;
} /* dark blue [Planets bg] */ &lt;br /&gt;
}&lt;br /&gt;
&lt;/code&gt;&lt;br /&gt;
PS.標記為紅色字體的地方，請搭配自己Gmail頁面風格更改字體顏色(如White改為black)&lt;br /&gt;
套用後圖片   &lt;br /&gt;
&lt;img alt=&quot;Gmailselect1.jpg&quot; src=&quot;http://i640.photobucket.com/albums/uu125/aidasit/Blog/Gmailselect1.jpg&quot; style=&quot;display: block; float: none; margin-left: auto; margin-right: auto;&quot; title=&quot;Gmailselect1.jpg&quot; /&gt;</content><link rel='replies' type='application/atom+xml' href='http://seciblog.blogspot.com/feeds/7134523937826391566/comments/default' title='張貼留言'/><link rel='replies' type='text/html' href='http://seciblog.blogspot.com/2010/08/gmail-gmail.html#comment-form' title='0 個意見'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3768925651175909456/posts/default/7134523937826391566'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3768925651175909456/posts/default/7134523937826391566'/><link rel='alternate' type='text/html' href='http://seciblog.blogspot.com/2010/08/gmail-gmail.html' title='[Gmail] 恢復Gmail「未讀取」等按鈕選項'/><author><name>Alec</name><uri>http://www.blogger.com/profile/01463694164725658947</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='31' src='http://3.bp.blogspot.com/_3XmLB7Obrrg/SrMgkHxdMmI/AAAAAAAAAv4/BTn-IA3z2Rk/S220/Xbox360.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://i640.photobucket.com/albums/uu125/aidasit/Blog/th_Gmailselect.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3768925651175909456.post-4937038530548735690</id><published>2010-07-23T14:22:00.000+08:00</published><updated>2010-07-23T14:22:39.780+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Firefox擴充套件"/><category scheme="http://www.blogger.com/atom/ns#" term="Greasemonkey"/><title type='text'>[Fx套件] 火狐必裝套件 ─ Greasemonkey</title><content type='html'>Greasemonkey(以下簡稱GM)，中文俗稱油猴子，為火狐(Firefox)的一個擴充套件，可讓使用者安裝不同的腳本為需要的網站增加、修改其功能，達到方便瀏覽網站之目的，諸如Google搜尋的排列方式、一鍵下載YouTube影片及Flickr小圖放大功能等，都可利用腳本來達成，可說是火狐必定安裝的擴充套件之一。   &lt;br /&gt;
&lt;blockquote&gt;&lt;b&gt;套件資訊：&lt;/b&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;套件名稱：Greasemonkey &lt;/li&gt;
&lt;li&gt;相容於：Firefox 1.5 - 3.6.* &lt;/li&gt;
&lt;li&gt;官方網站：&lt;a href=&quot;http://www.greasespot.net/&quot; target=&quot;_blank&quot; title=&quot; http://www.greasespot.net/ &quot;&gt;http://www.greasespot.net/&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;下載網站：&lt;a href=&quot;https://addons.mozilla.org/zh-TW/firefox/addon/748/&quot; title=&quot; https://addons.mozilla.org/zh-TW/firefox/addon/748/ &quot;&gt;https://addons.mozilla.org/zh-TW/firefox/addon/748/&lt;/a&gt; &lt;/li&gt;
&lt;/ul&gt;&lt;/blockquote&gt;GM的安裝步驟如同一般的火狐套件，在上述下載網站點選新增至Firefox(Add to Firefox)即可，安裝完畢後會在火狐狀態列顯示一個可愛的猴子圖示(如下圖)&lt;img alt=&quot;GM.jpg&quot; src=&quot;http://i640.photobucket.com/albums/uu125/aidasit/Blog/GM.jpg&quot; style=&quot;display: block; float: none; margin-left: auto; margin-right: auto;&quot; title=&quot;GM.jpg&quot; /&gt; &lt;br /&gt;
在圖示上點選右鍵，會如上圖一般出現一個資訊方框，各代表者：&lt;br /&gt;
&lt;ol&gt;&lt;li&gt;方框最上方是目前頁面所使用的腳本名稱，在之前的GM版本會在腳本名稱顯示一個打勾符號，代表腳本啟用與否，然而最新版本不知為何取消了這設計，抑或是我電腦本身的問題，原因並不瞭解。 &lt;/li&gt;
&lt;li&gt;正在使用中的腳本：某些腳本必須經過相關設定才能正常使用，此選項會顯示腳本的設定選項。 &lt;/li&gt;
&lt;li&gt;新增腳本： 此選項應是編寫GM腳本用，我並沒有實際操縱過，故略過不提。 &lt;/li&gt;
&lt;li&gt;管理腳本： 開啟管理腳本選項，為最常用的選項，也可以在GM圖示上用滑鼠中鍵開啟，下面篇幅會詳加介紹。 &lt;/li&gt;
&lt;li&gt;啟用：顧名思義，啟用GM的選項，亦可在GM圖示上使用滑鼠左鍵啟動 &lt;/li&gt;
&lt;/ol&gt;&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;管理腳本選項是GM中最常使用的選項，在此選項下可以查看目前所有安裝的腳本&lt;a href=&quot;http://i640.photobucket.com/albums/uu125/aidasit/Blog/GM1.jpg&quot; title=&quot; http://i640.photobucket.com/albums/uu125/aidasit/Blog/GM1.jpg &quot;&gt;&lt;img alt=&quot;GM1.jpg&quot; src=&quot;http://i640.photobucket.com/albums/uu125/aidasit/Blog/GM1.jpg&quot; title=&quot;GM1.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
上圖即為管理腳本畫面，左側為所有安裝的腳本，灰色代表目前尚未啟用的腳本，如果懂得編寫修改GM腳本，可以點選下方編輯按鈕利用&lt;a href=&quot;http://notepad-plus-plus.org/tw/node/8&quot; target=&quot;_blank&quot; title=&quot; http://notepad-plus-plus.org/tw/node/8 &quot;&gt;Notepad++&lt;/a&gt;等軟體撰寫修改。&lt;br /&gt;
&lt;br /&gt;
畫面右側上方是腳本會套用到的網址，在此網址下腳本才會作用，然而有些腳本是全網址適用，但在某些網站會造成瀏覽上的問題，遇到此種情形時可以在下方例外網址新增要過濾的網址項目，使腳本無法在此網址下作用，避免造成瀏覽上的問題。&lt;br /&gt;
&lt;br /&gt;
移除GM腳本也相當地容易，當確定未來都不會在使用此腳本時，可勾選旁邊的「同時清除腳本的相關設定」在點選「移除腳本」按鈕，反之則點選移除腳本按鈕即可。&lt;br /&gt;
&lt;br /&gt;
GM套件讓使用者在網路上瀏覽更為便利，不過需要搭配適合的腳本，個人會推薦至&lt;a href=&quot;http://userscripts.org/&quot; title=&quot; http://userscripts.org/ &quot;&gt;Userscripts.org&lt;/a&gt;尋找需要的腳本，未來本網誌也會介紹方便實用的腳本給各位。</content><link rel='replies' type='application/atom+xml' href='http://seciblog.blogspot.com/feeds/4937038530548735690/comments/default' title='張貼留言'/><link rel='replies' type='text/html' href='http://seciblog.blogspot.com/2010/07/fx-greasemonkey.html#comment-form' title='0 個意見'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3768925651175909456/posts/default/4937038530548735690'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3768925651175909456/posts/default/4937038530548735690'/><link rel='alternate' type='text/html' href='http://seciblog.blogspot.com/2010/07/fx-greasemonkey.html' title='[Fx套件] 火狐必裝套件 ─ Greasemonkey'/><author><name>Alec</name><uri>http://www.blogger.com/profile/01463694164725658947</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='31' src='http://3.bp.blogspot.com/_3XmLB7Obrrg/SrMgkHxdMmI/AAAAAAAAAv4/BTn-IA3z2Rk/S220/Xbox360.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://i640.photobucket.com/albums/uu125/aidasit/Blog/th_GM.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3768925651175909456.post-246150931582329680</id><published>2010-07-19T12:11:00.003+08:00</published><updated>2010-07-19T12:14:08.798+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Blogger"/><title type='text'>[Blogger] 設置文章總覽效果</title><content type='html'>&lt;a href=&quot;http://sites.google.com/site/aidasit/zi-liao-dang-an/LightboxIcon.png&quot; title=&quot;此篇為點圖放大文章 --&amp;gt; http://sites.google.com/site/aidasit/zi-liao-dang-an/LightboxIcon.png --&amp;gt; http://sites.google.com/site/aidasit/zi-liao-dang-an/LightboxIcon.png --&amp;gt; http://sites.google.com/site/aidasit/zi-liao-dang-an/LightboxIcon.png&quot;&gt;&lt;img alt=&quot;此篇為點圖放大文章&quot; border=&quot;0&quot; height=&quot;16&quot; src=&quot;http://sites.google.com/site/aidasit/zi-liao-dang-an/LightboxIcon.png&quot; title=&quot;此篇為點圖放大文章&quot; width=&quot;16&quot; /&gt;&lt;/a&gt;   &lt;br /&gt;
&lt;a href=&quot;http://i640.photobucket.com/albums/uu125/aidasit/Blog/Blogger.jpg&quot; rel=&quot;lightbox[blogger]&quot; title=&quot; http://i640.photobucket.com/albums/uu125/aidasit/Blog/Blogger.jpg  --&amp;gt; http://i640.photobucket.com/albums/uu125/aidasit/Blog/Blogger.jpg&quot;&gt;&lt;img alt=&quot;Blogger.jpg&quot; height=&quot;318&quot; src=&quot;http://i640.photobucket.com/albums/uu125/aidasit/Blog/Blogger.jpg&quot; title=&quot;Blogger.jpg&quot; width=&quot;600&quot; /&gt;&lt;/a&gt;要在Blogger顯示自己過去所寫的文章，大部分都是會使用Blogger內建的小工具─網誌存檔(如：本網誌左側文章總覽欄位)，然而網誌存檔不管是下拉式選單或階層、條列式，都是採用日期排列，無法看出全部標籤的文章。&lt;br /&gt;
&lt;br /&gt;
不過昨天在PTT Blog版上發現解決此一問題的最佳方法，可以自動讀取所有標籤文章的模組，個人安裝測試後，發現整個模組運作及外觀都令人都相當滿意，模組示範可以參考本站上方&lt;a href=&quot;http://seciblog.blogspot.com/p/blog-page_18.html&quot; target=&quot;_blank&quot; title=&quot; http://seciblog.blogspot.com/p/blog-page_18.html  --&amp;gt; http://seciblog.blogspot.com/p/blog-page_18.html&quot;&gt;文章總覽&lt;/a&gt;頁面。&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;
安裝方式也很簡單，只要在Blogger中新建立一篇網頁/文章，下圖使用新增網頁為範例    &lt;br /&gt;
&lt;a href=&quot;http://i640.photobucket.com/albums/uu125/aidasit/Blog/Blogger1.jpg&quot; rel=&quot;lightbox[blogger]&quot; title=&quot; http://i640.photobucket.com/albums/uu125/aidasit/Blog/Blogger1.jpg  --&amp;gt; http://i640.photobucket.com/albums/uu125/aidasit/Blog/Blogger1.jpg&quot;&gt;&lt;img alt=&quot;Blogger1.jpg&quot; height=&quot;431&quot; src=&quot;http://i640.photobucket.com/albums/uu125/aidasit/Blog/Blogger1.jpg&quot; title=&quot;Blogger1.jpg&quot; width=&quot;600&quot; /&gt;&lt;/a&gt; &lt;br /&gt;
&lt;br /&gt;
選擇修改HTML    &lt;br /&gt;
&lt;a href=&quot;http://i640.photobucket.com/albums/uu125/aidasit/Blog/Blogger2.jpg&quot; rel=&quot;lightbox[blogger]&quot; title=&quot; http://i640.photobucket.com/albums/uu125/aidasit/Blog/Blogger2.jpg  --&amp;gt; http://i640.photobucket.com/albums/uu125/aidasit/Blog/Blogger2.jpg&quot;&gt;&lt;img alt=&quot;Blogger2.jpg&quot; height=&quot;637&quot; src=&quot;http://i640.photobucket.com/albums/uu125/aidasit/Blog/Blogger2.jpg&quot; title=&quot;Blogger2.jpg&quot; width=&quot;600&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
插入以下程式碼，並把部落格網址替換成自己部落格網址即可&lt;br /&gt;
&lt;code&gt;&amp;lt;link href=&quot;http://abu-farhan.com/script/acctoc/acc-toc.css&quot; media=&quot;screen&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;&amp;gt;&amp;lt;/link&amp;gt;    &lt;br /&gt;
&amp;lt;script src=&quot;http://abu-farhan.com/script/acctoc/daftarisiv2-pack.js&quot;&amp;gt;&amp;lt;/script&amp;gt;     &lt;br /&gt;
&amp;lt;script src=&quot;&lt;span style=&quot;color: red;&quot;&gt;http://部落格網址&lt;/span&gt;/feeds/posts/summary?max-results=1000&amp;amp;amp;alt=json-in-script&amp;amp;amp;callback=loadtoc&quot;&amp;gt;&amp;lt;/script&amp;gt;     &lt;br /&gt;
&amp;lt;script type=&quot;text/javascript&quot;&amp;gt; var accToc=true; &amp;lt;/script&amp;gt;     &lt;br /&gt;
&amp;lt;script src=&quot;http://abu-farhan.com/script/acctoc/accordion-pack.js&quot; type=&quot;text/javascript&quot;&amp;gt;&amp;lt;/script&amp;gt; &lt;/code&gt;  &lt;br /&gt;
&lt;br /&gt;
文章總覽模組來源：&lt;a href=&quot;http://www.abu-farhan.com/2010/05/table-of-content-and-accordion-for-blogger/&quot; target=&quot;_blank&quot; title=&quot; http://www.abu-farhan.com/2010/05/table-of-content-and-accordion-for-blogger/  --&amp;gt; http://www.abu-farhan.com/2010/05/table-of-content-and-accordion-for-blogger/&quot;&gt;Table of contents and Accordion for Blogger&lt;/a&gt;     &lt;br /&gt;
如果不喜歡此種模組樣式，想更換成表格樣式可以另外參考這篇：&lt;a href=&quot;http://www.abu-farhan.com/2010/05/table-of-content-for-blogger-new-style/&quot; target=&quot;_blank&quot; title=&quot; http://www.abu-farhan.com/2010/05/table-of-content-for-blogger-new-style/  --&amp;gt; http://www.abu-farhan.com/2010/05/table-of-content-for-blogger-new-style/&quot;&gt;Table of Contents for Blogger new style&lt;/a&gt;，&lt;a href=&quot;http://demo-abu-farhan-com.blogspot.com/p/table-of-content.html&quot; target=&quot;_blank&quot; title=&quot; http://demo-abu-farhan-com.blogspot.com/p/table-of-content.html  --&amp;gt; http://demo-abu-farhan-com.blogspot.com/p/table-of-content.html&quot;&gt;示範網頁&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
PS.從程式碼看來，似乎最多只顯示1000篇文章，但應該可以修改數字來顯示更多文章，不過我的文章目前尚無如此多地數量，所以只能煩請有超過1000篇文章的網友測試回報給我，看是否只能顯示1000篇文章。</content><link rel='replies' type='application/atom+xml' href='http://seciblog.blogspot.com/feeds/246150931582329680/comments/default' title='張貼留言'/><link rel='replies' type='text/html' href='http://seciblog.blogspot.com/2010/07/blogger.html#comment-form' title='0 個意見'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3768925651175909456/posts/default/246150931582329680'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3768925651175909456/posts/default/246150931582329680'/><link rel='alternate' type='text/html' href='http://seciblog.blogspot.com/2010/07/blogger.html' title='[Blogger] 設置文章總覽效果'/><author><name>Alec</name><uri>http://www.blogger.com/profile/01463694164725658947</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='31' src='http://3.bp.blogspot.com/_3XmLB7Obrrg/SrMgkHxdMmI/AAAAAAAAAv4/BTn-IA3z2Rk/S220/Xbox360.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://i640.photobucket.com/albums/uu125/aidasit/Blog/th_Blogger.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3768925651175909456.post-7433449343400201631</id><published>2010-03-21T10:51:00.020+08:00</published><updated>2010-09-04T11:55:46.427+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Google Chrome"/><title type='text'>[GC] 暫時解決無法安裝擴充功能問題</title><content type='html'>&lt;a href=&quot;http://sites.google.com/site/aidasit/zi-liao-dang-an/LightboxIcon.png&quot; title=&quot;此篇為點圖放大文章 --&amp;gt; http://sites.google.com/site/aidasit/zi-liao-dang-an/LightboxIcon.png&quot;&gt;&lt;img alt=&quot;此篇為點圖放大文章&quot; border=&quot;0&quot; height=&quot;16&quot; src=&quot;http://sites.google.com/site/aidasit/zi-liao-dang-an/LightboxIcon.png&quot; title=&quot;此篇為點圖放大文章&quot; width=&quot;16&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;blockquote&gt;&lt;div style=&quot;color: red;&quot;&gt;&lt;b&gt;2010.09.03補充&lt;/b&gt;&lt;/div&gt;更新至Google Chrome 6.0.472.53 正式版可修正無法安裝擴充套件的問題&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;color: red;&quot;&gt;&lt;b&gt;2010.04.28補充&lt;/b&gt;&lt;/div&gt;最近發現有更快速的方法可解決此一問題，只要關閉GC的沙箱(Sandbox)功能即可。關閉方法如下：&lt;br /&gt;
在GC的捷徑後增加以下參數 --no-sandbox (如下圖)，參數前需加上空白&lt;br /&gt;
&lt;a href=&quot;http://img62.imageshack.us/img62/6636/92912449.jpg&quot; rel=&quot;lightbox[gc]&quot; title=&quot; http://img62.imageshack.us/img62/6636/92912449.jpg --&amp;gt; http://img62.imageshack.us/img62/6636/92912449.jpg&quot;&gt;&lt;img alt=&quot;92912449.jpg&quot; border=&quot;0&quot; height=&quot;320&quot; src=&quot;http://img62.imageshack.us/img62/6636/92912449.jpg&quot; title=&quot;92912449.jpg&quot; width=&quot;248&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;div style=&quot;color: red;&quot;&gt;PS.建議安裝完需要的套件(主題)後，請恢復沙箱功能&lt;/div&gt;&lt;/blockquote&gt;昨天心血來潮想把Google Chrome(以下簡稱GC)更換佈景主題，然而在點選套用主題後，竟跳出「無法安裝擴充功能 」的視窗，並顯示&lt;b&gt;「&lt;span style=&quot;color: red;&quot;&gt;could not create directory for unzipping&lt;/span&gt; 」&lt;/b&gt;，之後試著安裝任一擴充套件，也都是顯示相同訊息。&lt;br /&gt;
&lt;a href=&quot;http://i640.photobucket.com/albums/uu125/aidasit/Blog/gcunzip.jpg&quot; rel=&quot;lightbox[gc]&quot; title=&quot;http://i640.photobucket.com/albums/uu125/aidasit/Blog/gcunzip.jpg  --&amp;gt; http://i640.photobucket.com/albums/uu125/aidasit/Blog/gcunzip.jpg&quot;&gt;&lt;img alt=&quot;gcunzip.jpg&quot; height=&quot;433&quot; src=&quot;http://i640.photobucket.com/albums/uu125/aidasit/Blog/gcunzip.jpg&quot; title=&quot;gcunzip.jpg&quot; width=&quot;600&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
一開始以為重新安裝GC應該就可以解決，但重安裝後問題依舊存在，上網搜尋了一下，發現國外少數人也有此情形發生(&lt;a href=&quot;http://code.google.com/p/chromium/issues/detail?id=35198&quot; title=&quot; http://code.google.com/p/chromium/issues/detail?id=35198 --&amp;gt; http://code.google.com/p/chromium/issues/detail?id=35198&quot;&gt;Issue 35198&lt;/a&gt;)，在連接中有人提供瞭解決辦法，&lt;strike&gt;似乎是目前解決此問題的唯一方法&lt;/strike&gt;，不過我並不是很喜歡修改系統參數這方法就是。&lt;br /&gt;
&lt;br /&gt;
以下為解決無法安裝擴充功能問題的步驟：(XP適用)&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;1.進入控制台，點選系統圖示，選取進階，選擇下方的環境變數選項。&lt;br /&gt;
&lt;a href=&quot;http://i640.photobucket.com/albums/uu125/aidasit/Blog/gcsystem.jpg&quot; rel=&quot;lightbox[gc]&quot; title=&quot; http://i640.photobucket.com/albums/uu125/aidasit/Blog/gcsystem.jpg &quot;&gt;&lt;img alt=&quot;gcsystem.jpg&quot; height=&quot;334&quot; src=&quot;http://i640.photobucket.com/albums/uu125/aidasit/Blog/gcsystem.jpg&quot; title=&quot;gcsystem.jpg&quot; width=&quot;600&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
2.修改TEMP及TMP(點選編輯按鈕修改)，把原始的路徑更改為C:\Temp(請務必確定在此路徑下有此一資料夾，倘若無此資料夾請自行創立一個)。&lt;br /&gt;
&lt;div style=&quot;color: #cc0000;&quot;&gt;PS.建議備份好TEMP及TMP的原始路徑，以為將來還原之用。&lt;/div&gt;&lt;br /&gt;
3.重新開機 ，之後GC應該就可以安裝任何佈景主題及擴充套件。</content><link rel='replies' type='application/atom+xml' href='http://seciblog.blogspot.com/feeds/7433449343400201631/comments/default' title='張貼留言'/><link rel='replies' type='text/html' href='http://seciblog.blogspot.com/2010/03/gc.html#comment-form' title='9 個意見'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3768925651175909456/posts/default/7433449343400201631'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3768925651175909456/posts/default/7433449343400201631'/><link rel='alternate' type='text/html' href='http://seciblog.blogspot.com/2010/03/gc.html' title='[GC] 暫時解決無法安裝擴充功能問題'/><author><name>Alec</name><uri>http://www.blogger.com/profile/01463694164725658947</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='31' src='http://3.bp.blogspot.com/_3XmLB7Obrrg/SrMgkHxdMmI/AAAAAAAAAv4/BTn-IA3z2Rk/S220/Xbox360.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://i640.photobucket.com/albums/uu125/aidasit/Blog/th_gcunzip.jpg" height="72" width="72"/><thr:total>9</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3768925651175909456.post-925795330080942111</id><published>2010-01-04T20:46:00.011+08:00</published><updated>2011-04-02T16:41:28.754+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Blogger"/><title type='text'>[Blogger] 在Blogger安裝LightBox特效</title><content type='html'>&lt;a href=&quot;http://sites.google.com/site/aidasit/zi-liao-dang-an/LightboxIcon.png&quot; title=&quot;此篇為點圖放大文章&quot;&gt;&lt;img alt=&quot;此篇為點圖放大文章&quot; border=&quot;0&quot; height=&quot;16&quot; src=&quot;http://sites.google.com/site/aidasit/zi-liao-dang-an/LightboxIcon.png&quot; width=&quot;16&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
Lightbox(光箱)，是一種讓小圖不需另開新頁，可點選圖片直接在同一頁面瀏覽大圖的酷炫特效，很適合用於美食、旅遊或教學等圖片較多的網站。Lightbox其效果如下：&lt;br /&gt;
&lt;b&gt;單一圖片瀏覽&lt;/b&gt;&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh4UuXnx6D5NzrtezsslGxipjiye9fr4HfInQpyjx0TloAnvuuBGcRfmoNGFtUlr0vbYEN4Tl4WHjbbqKPh_OckzTQhQ3CmmV8AApr4T3m8HOZEVH1NBt10wDxiQwRkAWBNMmhMhr7aExS7/s1600/october08-dolphins-calendar-1024x768.jpg&quot; rel=&quot;lightbox&quot; title=&quot;october08-dolphins-calendar-1024x768.jpg --&amp;gt; https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh4UuXnx6D5NzrtezsslGxipjiye9fr4HfInQpyjx0TloAnvuuBGcRfmoNGFtUlr0vbYEN4Tl4WHjbbqKPh_OckzTQhQ3CmmV8AApr4T3m8HOZEVH1NBt10wDxiQwRkAWBNMmhMhr7aExS7/s1600/october08-dolphins-calendar-1024x768.jpg --&amp;gt; https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh4UuXnx6D5NzrtezsslGxipjiye9fr4HfInQpyjx0TloAnvuuBGcRfmoNGFtUlr0vbYEN4Tl4WHjbbqKPh_OckzTQhQ3CmmV8AApr4T3m8HOZEVH1NBt10wDxiQwRkAWBNMmhMhr7aExS7/s1600/october08-dolphins-calendar-1024x768.jpg&quot;&gt;&lt;img alt=&quot;october08-dolphins-calendar-1024x768.jpg&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh4UuXnx6D5NzrtezsslGxipjiye9fr4HfInQpyjx0TloAnvuuBGcRfmoNGFtUlr0vbYEN4Tl4WHjbbqKPh_OckzTQhQ3CmmV8AApr4T3m8HOZEVH1NBt10wDxiQwRkAWBNMmhMhr7aExS7/s200/october08-dolphins-calendar-1024x768.jpg&quot; title=&quot;october08-dolphins-calendar-1024x768.jpg&quot; /&gt;&lt;/a&gt;  &lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEihHJPlCVAwVCmTyWOdbYFLQnemO7RJMBOlVqT4VOdtzwe-81D8zECcbaDU8t_oD2T5k0UPWO_F9mD474pNXtCDL93aZxtarDQ24JSEDlJgFr1LwosiKyZMMnMV3DAZ7Jmb57jXIOoO8vV-/s1600/1024-06.jpg&quot; rel=&quot;lightbox&quot; title=&quot;1024-06.jpg --&amp;gt; https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEihHJPlCVAwVCmTyWOdbYFLQnemO7RJMBOlVqT4VOdtzwe-81D8zECcbaDU8t_oD2T5k0UPWO_F9mD474pNXtCDL93aZxtarDQ24JSEDlJgFr1LwosiKyZMMnMV3DAZ7Jmb57jXIOoO8vV-/s1600/1024-06.jpg --&amp;gt; https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEihHJPlCVAwVCmTyWOdbYFLQnemO7RJMBOlVqT4VOdtzwe-81D8zECcbaDU8t_oD2T5k0UPWO_F9mD474pNXtCDL93aZxtarDQ24JSEDlJgFr1LwosiKyZMMnMV3DAZ7Jmb57jXIOoO8vV-/s1600/1024-06.jpg&quot;&gt;&lt;img alt=&quot;1024-06.jpg&quot; border=&quot;0&quot; height=&quot;150&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEihHJPlCVAwVCmTyWOdbYFLQnemO7RJMBOlVqT4VOdtzwe-81D8zECcbaDU8t_oD2T5k0UPWO_F9mD474pNXtCDL93aZxtarDQ24JSEDlJgFr1LwosiKyZMMnMV3DAZ7Jmb57jXIOoO8vV-/s200/1024-06.jpg&quot; title=&quot;1024-06.jpg&quot; width=&quot;200&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;b&gt;圖片群組瀏覽&lt;/b&gt;&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhboQI_69HfGODsfYfQwzwElLhuoeTMxdBUswVA4XYDvdEeLEWqaEWtzrcLbtt27kMHbxh_8S7X-kooAut78AcBBGnscUP8q_j83zuRGcyrc8Xjrt1k_Nq5381aInReSlI5o0HeVdojz-4e/s1600/dmm01.jpg&quot; imageanchor=&quot;1&quot; rel=&quot;lightbox[lb]&quot; title=&quot; https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhboQI_69HfGODsfYfQwzwElLhuoeTMxdBUswVA4XYDvdEeLEWqaEWtzrcLbtt27kMHbxh_8S7X-kooAut78AcBBGnscUP8q_j83zuRGcyrc8Xjrt1k_Nq5381aInReSlI5o0HeVdojz-4e/s1600/dmm01.jpg  --&amp;gt; https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhboQI_69HfGODsfYfQwzwElLhuoeTMxdBUswVA4XYDvdEeLEWqaEWtzrcLbtt27kMHbxh_8S7X-kooAut78AcBBGnscUP8q_j83zuRGcyrc8Xjrt1k_Nq5381aInReSlI5o0HeVdojz-4e/s1600/dmm01.jpg&quot;&gt;&lt;img alt=&quot;dmm01.jpg&quot; border=&quot;0&quot; height=&quot;150&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhboQI_69HfGODsfYfQwzwElLhuoeTMxdBUswVA4XYDvdEeLEWqaEWtzrcLbtt27kMHbxh_8S7X-kooAut78AcBBGnscUP8q_j83zuRGcyrc8Xjrt1k_Nq5381aInReSlI5o0HeVdojz-4e/s200/dmm01.jpg&quot; title=&quot;dmm01.jpg&quot; width=&quot;200&quot; /&gt;&lt;/a&gt;  &lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhjKI-_-CvbUyZSkpZFBGXTpiLMkKDXDLSR1eo5qgCRz9P77ZBqb3eosKw3lhEvsAdYaAITC58vIxpOgb88wqEWrHFmSM8KdeuY0V6bdJbjjLQlL93VjLr54F5sv7vlJ93QiYEqETMoeOgt/s1600/dmm02.jpg&quot; rel=&quot;lightbox[lb]&quot; title=&quot; https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhjKI-_-CvbUyZSkpZFBGXTpiLMkKDXDLSR1eo5qgCRz9P77ZBqb3eosKw3lhEvsAdYaAITC58vIxpOgb88wqEWrHFmSM8KdeuY0V6bdJbjjLQlL93VjLr54F5sv7vlJ93QiYEqETMoeOgt/s1600/dmm02.jpg  --&amp;gt; https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhjKI-_-CvbUyZSkpZFBGXTpiLMkKDXDLSR1eo5qgCRz9P77ZBqb3eosKw3lhEvsAdYaAITC58vIxpOgb88wqEWrHFmSM8KdeuY0V6bdJbjjLQlL93VjLr54F5sv7vlJ93QiYEqETMoeOgt/s1600/dmm02.jpg&quot;&gt;&lt;img alt=&quot;dmm02.jpg&quot; border=&quot;0&quot; height=&quot;150&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhjKI-_-CvbUyZSkpZFBGXTpiLMkKDXDLSR1eo5qgCRz9P77ZBqb3eosKw3lhEvsAdYaAITC58vIxpOgb88wqEWrHFmSM8KdeuY0V6bdJbjjLQlL93VjLr54F5sv7vlJ93QiYEqETMoeOgt/s200/dmm02.jpg&quot; title=&quot;dmm02.jpg&quot; width=&quot;200&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
第一次看到Lightbox效果是在&lt;a href=&quot;http://klcintw4.blogspot.com/2006/09/blogger-betalightbox.html&quot; title=&quot; http://klcintw4.blogspot.com/2006/09/blogger-betalightbox.html  --&amp;gt; http://klcintw4.blogspot.com/2006/09/blogger-betalightbox.html&quot;&gt;良人的大秘寶&lt;/a&gt;上，第一眼就感覺非常特別，很想安裝在自己的Blog上，不過在良人的大秘寶LightBox語法是設置在他自己的空間，會有頻寬用完無法顯示的因素存在。&lt;br /&gt;
&lt;br /&gt;
因此我依照&lt;a href=&quot;http://www.huddletogether.com/projects/lightbox2/&quot; title=&quot; http://www.huddletogether.com/projects/lightbox2/  --&amp;gt; http://www.huddletogether.com/projects/lightbox2/&quot;&gt;Lightbox 2&lt;/a&gt;官網的說明，把檔案架設在Google空間，步驟雖多但相當地簡單，對此特效有興趣的朋友可以依下列方式自行安裝。&lt;br /&gt;
&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;一、下載Lightbox檔案&lt;/b&gt;&lt;br /&gt;
1.至官網下載&lt;a href=&quot;http://www.huddletogether.com/projects/lightbox2/#download&quot; title=&quot; http://www.huddletogether.com/projects/lightbox2/#download  --&amp;gt; http://www.huddletogether.com/projects/lightbox2/#download&quot;&gt;Lightbox v2.04&lt;/a&gt;版本並解壓縮&lt;br /&gt;
2.解壓縮後會有三個資料夾(css、images及js)和一個index網頁檔(網頁檔不需要可先刪除)。&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;二、修改部分檔案資料&lt;/b&gt;&lt;br /&gt;
&lt;div style=&quot;color: red;&quot;&gt;註：此步驟會需要修改一些語法，建議先去下載&lt;a href=&quot;http://azo-freeware.blogspot.com/2006/10/notepad-35.html&quot; title=&quot; http://azo-freeware.blogspot.com/2006/10/notepad-35.html  --&amp;gt; http://azo-freeware.blogspot.com/2006/10/notepad-35.html&quot;&gt;Notepad++ 5.6.3 免安裝中文版 &lt;/a&gt;會比較方便。&lt;/div&gt;1.images資料夾中的closelabel、loading、nextlabel及prevlabel圖片上傳至&lt;a href=&quot;http://sites.google.com/&quot; title=&quot; http://sites.google.com/  --&amp;gt; http://sites.google.com/&quot;&gt;Google Sites&lt;/a&gt;空間(如何上傳至Google Sites請自行搜尋，本篇不詳述)&lt;br /&gt;
&lt;br /&gt;
2.使用Notepad++打開css資料夾中的lightbox.css，尋找到下列兩行語法&lt;br /&gt;
&lt;code&gt;#prevLink:hover, #prevLink:visited:hover { background: url(&lt;b style=&quot;color: blue;&quot;&gt;../images/prevlabel.gif&lt;/b&gt;) left 15% no-repeat; }&lt;br /&gt;
#nextLink:hover, #nextLink:visited:hover { background: url(&lt;b&gt;&lt;span style=&quot;color: blue;&quot;&gt;../images/nextlabel.gif&lt;/span&gt;&lt;/b&gt;) right 15% no-repeat; }&lt;/code&gt;將上列藍色字體替換成剛剛上傳的nextlabel及prevlabel圖片網址。&lt;br /&gt;
&lt;br /&gt;
3.依上一步驟打開js資料夾中的lightbox.js，一樣尋找下列兩行語法&lt;br /&gt;
&lt;code&gt;    fileLoadingImage:        &#39;&lt;b&gt;&lt;span style=&quot;color: blue;&quot;&gt;images/loading.gif&lt;/span&gt;&lt;/b&gt;&#39;,     &lt;br /&gt;
fileBottomNavCloseImage: &#39;&lt;b style=&quot;color: blue;&quot;&gt;images/closelabel.gif&lt;/b&gt;&#39;,&lt;/code&gt;將上列藍色字體替換成剛剛上傳的closelabel及loading圖片網址。&lt;br /&gt;
&lt;br /&gt;
4.把以下檔案builder.js、effects.js、lightbox.js、prototype.js、scriptaculous.js及lightbox.css上傳至Google Site空間，注意六個檔案請放在同一個資料夾中。&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;三、套用Blogger&lt;/b&gt;&lt;br /&gt;
1.進入Blogger後台點選版面配置-&amp;gt;修改 HTML，在&amp;lt;/head&amp;gt;之前插入以下語法(請先備份範本)&lt;br /&gt;
&lt;code&gt;&amp;lt;link rel=&quot;stylesheet&quot; href=&quot;上傳空間網址/lightbox.css&quot; type=&quot;text/css&quot; media=&quot;screen&quot; /&amp;gt;&lt;br /&gt;
&amp;lt;script src=&quot;上傳空間網址/prototype.js&quot; type=&quot;text/javascript&quot;&amp;gt;&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&amp;lt;script src=&quot;上傳空間網址/scriptaculous.js?load=effects,builder&quot; type=&quot;text/javascript&quot;&amp;gt;&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&amp;lt;script src=&quot;上傳空間網址/lightbox.js&quot; type=&quot;text/javascript&quot;&amp;gt;&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&lt;/code&gt;&lt;br /&gt;
2.編寫文章時，在圖片連接增加「rel=&quot;lightbox&quot;」即可，如&lt;br /&gt;
&lt;code&gt;&amp;lt;a href=&quot;http://image.jpg/&quot; &lt;b&gt;&lt;span style=&quot;color: red;&quot;&gt;rel=&quot;lightbox&quot;&lt;/span&gt;&lt;/b&gt;&amp;gt;&amp;lt;img src=&quot;http://image.jpg&quot; /&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;&lt;br /&gt;
/code&amp;gt;&lt;/code&gt;若需要群組顯示，則是增加「rel=&quot;lightbox[自行添加字母]&quot;」，如&lt;br /&gt;
&lt;code&gt;&amp;lt;a href=&quot;images1.jpg&quot; &lt;b&gt;&lt;span style=&quot;color: red;&quot;&gt;rel=&quot;lightbox[roadtrip]&quot;&lt;/span&gt;&lt;/b&gt;&amp;gt;image #1&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;a href=&quot;images2.jpg&quot; &lt;b&gt;&lt;span style=&quot;color: red;&quot;&gt;rel=&quot;lightbox[roadtrip]&quot;&lt;/span&gt;&lt;/b&gt;&amp;gt;image #2&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;a href=&quot;images3.jpg&quot; &lt;b&gt;&lt;span style=&quot;color: red;&quot;&gt;rel=&quot;lightbox[roadtrip]&quot;&lt;/span&gt;&lt;/b&gt;&amp;gt;image #3&amp;lt;/a&amp;gt;&lt;/code&gt;</content><link rel='replies' type='application/atom+xml' href='http://seciblog.blogspot.com/feeds/925795330080942111/comments/default' title='張貼留言'/><link rel='replies' type='text/html' href='http://seciblog.blogspot.com/2010/01/blogger-bloggerlightbox.html#comment-form' title='6 個意見'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3768925651175909456/posts/default/925795330080942111'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3768925651175909456/posts/default/925795330080942111'/><link rel='alternate' type='text/html' href='http://seciblog.blogspot.com/2010/01/blogger-bloggerlightbox.html' title='[Blogger] 在Blogger安裝LightBox特效'/><author><name>Alec</name><uri>http://www.blogger.com/profile/01463694164725658947</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='31' src='http://3.bp.blogspot.com/_3XmLB7Obrrg/SrMgkHxdMmI/AAAAAAAAAv4/BTn-IA3z2Rk/S220/Xbox360.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh4UuXnx6D5NzrtezsslGxipjiye9fr4HfInQpyjx0TloAnvuuBGcRfmoNGFtUlr0vbYEN4Tl4WHjbbqKPh_OckzTQhQ3CmmV8AApr4T3m8HOZEVH1NBt10wDxiQwRkAWBNMmhMhr7aExS7/s72-c/october08-dolphins-calendar-1024x768.jpg" height="72" width="72"/><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3768925651175909456.post-3157438716834133804</id><published>2010-01-03T14:31:00.025+08:00</published><updated>2010-08-21T14:02:51.090+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Firefox擴充套件"/><category scheme="http://www.blogger.com/atom/ns#" term="Stylish"/><title type='text'>[Fx套件] Stylish-擁有與眾不同的網站版面</title><content type='html'>&lt;a href=&quot;http://sites.google.com/site/aidasit/zi-liao-dang-an/LightboxIcon.png&quot; title=&quot;此篇為點圖放大文章 --&amp;gt; http://sites.google.com/site/aidasit/zi-liao-dang-an/LightboxIcon.png --&amp;gt; http://sites.google.com/site/aidasit/zi-liao-dang-an/LightboxIcon.png&quot;&gt;&lt;img alt=&quot;此篇為點圖放大文章&quot; border=&quot;0&quot; height=&quot;16&quot; src=&quot;http://sites.google.com/site/aidasit/zi-liao-dang-an/LightboxIcon.png&quot; title=&quot;此篇為點圖放大文章&quot; width=&quot;16&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;blockquote&gt;&lt;b&gt;套件資訊：&lt;/b&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;套件名稱：Stylish&amp;nbsp;&lt;/li&gt;
&lt;li&gt;相容於：Firefox: 3.0 – 3.7a1pre&lt;/li&gt;
&lt;li&gt;官方網站：&lt;a href=&quot;http://userstyles.org/&quot; title=&quot; http://userstyles.org/  --&amp;gt; http://userstyles.org/ --&amp;gt; http://userstyles.org/&quot;&gt;userstyles.org&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;下載網站：&lt;a href=&quot;https://addons.mozilla.org/zh-TW/firefox/addon/2108&quot; title=&quot; https://addons.mozilla.org/zh-TW/firefox/addon/2108  --&amp;gt; https://addons.mozilla.org/zh-TW/firefox/addon/2108 --&amp;gt; https://addons.mozilla.org/zh-TW/firefox/addon/2108&quot;&gt;https://addons.mozilla.org/zh-TW/firefox/addon/2108&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/blockquote&gt;Stylish是一個讓使用者可以自訂網站與使用介面外觀的附加套件，是我相當推薦安裝的套件之一，使用方法可以參考底下相關閱讀連結，以下就個人推薦的樣式介紹給各位：(以下圖片可點選放大)&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;1.&lt;a href=&quot;http://userstyles.org/styles/12859&quot; title=&quot; http://userstyles.org/styles/12859  --&amp;gt; http://userstyles.org/styles/12859 --&amp;gt; http://userstyles.org/styles/12859&quot;&gt;OS X Style for New Google Reader&amp;nbsp;&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgKwhIt6CaXznikRUdkdjbICZ8syOyxhvCGfgPVW_N4XCOMVOtdqCvrfuE_aUvRIyalTvWc8m5N6cDpJadkktxHIhUm-gR78RNT4G5JSxTo5gwpaNTM9u90Vhuae6OBdnMpwxOjhx8I1f18/s1600/Google+Reader-Stylish.jpg&quot; rel=&quot;lightbox[s]&quot; title=&quot; https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgKwhIt6CaXznikRUdkdjbICZ8syOyxhvCGfgPVW_N4XCOMVOtdqCvrfuE_aUvRIyalTvWc8m5N6cDpJadkktxHIhUm-gR78RNT4G5JSxTo5gwpaNTM9u90Vhuae6OBdnMpwxOjhx8I1f18/s1600/Google+Reader-Stylish.jpg &quot;&gt;&lt;img alt=&quot;Google+Reader-Stylish.jpg&quot; border=&quot;0&quot; height=&quot;241&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgKwhIt6CaXznikRUdkdjbICZ8syOyxhvCGfgPVW_N4XCOMVOtdqCvrfuE_aUvRIyalTvWc8m5N6cDpJadkktxHIhUm-gR78RNT4G5JSxTo5gwpaNTM9u90Vhuae6OBdnMpwxOjhx8I1f18/s400/Google+Reader-Stylish.jpg&quot; title=&quot;Google+Reader-Stylish.jpg&quot; width=&quot;500&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
適用於中英文版Google Reader，惟在中文版時，左上方的Google Reader標題會被裁切一小部份，但並不會影響到整體畫面，另外可在搭配&lt;a href=&quot;http://userstyles.org/styles/6113&quot; title=&quot; http://userstyles.org/styles/6113  --&amp;gt; http://userstyles.org/styles/6113 --&amp;gt; http://userstyles.org/styles/6113&quot;&gt;New Spinner for Google Reader&lt;/a&gt;，以增加讀取時的美觀。 &lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;
&lt;b&gt;2.&lt;a href=&quot;http://userstyles.org/styles/1078&quot; title=&quot; http://userstyles.org/styles/1078  --&amp;gt; http://userstyles.org/styles/1078 --&amp;gt; http://userstyles.org/styles/1078&quot;&gt;YouTube.com - dark gray redesign (vC)&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjUMP17yryICtfRK5C8sNQ0BOMVh9gK9GXg2OHcOBHq_T8x0ETBRLQDILmjNiKV_NafU1N0SzH4kaZ6dOvW4wNF2FT8-EeUqDF9q2stfapuYGY8xP542hJ7S5fsSdYxCStgIWj4nuq2Vp37/s1600/Youtube-stylish.jpg&quot; rel=&quot;lightbox[s]&quot; title=&quot; https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjUMP17yryICtfRK5C8sNQ0BOMVh9gK9GXg2OHcOBHq_T8x0ETBRLQDILmjNiKV_NafU1N0SzH4kaZ6dOvW4wNF2FT8-EeUqDF9q2stfapuYGY8xP542hJ7S5fsSdYxCStgIWj4nuq2Vp37/s1600/Youtube-stylish.jpg &quot;&gt;&lt;img alt=&quot;Youtube-stylish.jpg&quot; border=&quot;0&quot; height=&quot;238&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjUMP17yryICtfRK5C8sNQ0BOMVh9gK9GXg2OHcOBHq_T8x0ETBRLQDILmjNiKV_NafU1N0SzH4kaZ6dOvW4wNF2FT8-EeUqDF9q2stfapuYGY8xP542hJ7S5fsSdYxCStgIWj4nuq2Vp37/s400/Youtube-stylish.jpg&quot; title=&quot;Youtube-stylish.jpg&quot; width=&quot;500&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
把YouTube網站從原本的白色系改變成灰黑色系，增加瀏覽上的美觀及減少眼睛的負擔。&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;3.&lt;a href=&quot;http://userstyles.org/styles/4211&quot; title=&quot; http://userstyles.org/styles/4211  --&amp;gt; http://userstyles.org/styles/4211 --&amp;gt; http://userstyles.org/styles/4211&quot;&gt;Gmail Cleaner and Tweaker&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;
由台灣Nelson為Gmail所製作的樣式，其網誌有相當詳盡的說明，故不在截圖介紹。&lt;br /&gt;
&lt;a href=&quot;http://nelson.pixnet.net/blog/post/23341817&quot; title=&quot; http://nelson.pixnet.net/blog/post/23341817  --&amp;gt; http://nelson.pixnet.net/blog/post/23341817 --&amp;gt; http://nelson.pixnet.net/blog/post/23341817&quot;&gt;[FX] 給 Gmail 用的 Stylish @ Nelson 國三生了沒&amp;nbsp;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;4.&lt;a href=&quot;http://userstyles.org/styles/1195&quot; title=&quot; http://userstyles.org/styles/1195  --&amp;gt; http://userstyles.org/styles/1195 --&amp;gt; http://userstyles.org/styles/1195&quot;&gt;Website: cleaner - WRETCH - Album&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;
看名稱即知，這是給無名相簿使用，同為Nelson所製作的樣式。&lt;br /&gt;
&lt;a href=&quot;http://nelson.pixnet.net/blog/post/23234875&quot; title=&quot; http://nelson.pixnet.net/blog/post/23234875  --&amp;gt; http://nelson.pixnet.net/blog/post/23234875 --&amp;gt; http://nelson.pixnet.net/blog/post/23234875&quot;&gt;[FX] 給無名相簿用的 Stylish @ Nelson 國三生了沒&lt;/a&gt;&lt;b&gt;&amp;nbsp;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;5. &lt;a href=&quot;http://userstyles.org/styles/6599&quot; title=&quot; http://userstyles.org/styles/6599  --&amp;gt; http://userstyles.org/styles/6599 --&amp;gt; http://userstyles.org/styles/6599&quot;&gt;Auto-Hide BookMarks Toolbar - Firefox 3.0 *FIXED*&amp;nbsp;&amp;nbsp;&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;
隱藏Firefox書籤列，增大瀏覽空間，當滑鼠移過去書籤列會自動顯示出來。&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;6.&lt;a href=&quot;http://userstyles.org/styles/8248&quot; title=&quot; http://userstyles.org/styles/8248  --&amp;gt; http://userstyles.org/styles/8248 --&amp;gt; http://userstyles.org/styles/8248&quot;&gt;Yellow https location bar&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;
之前Firefox 3.0版，在連到https：//加密網址時，網址列會顯示為黃色底色，以突顯與一般網址不同，然而到3.5版後，Firefox卻取消這功能，用鎖頭取代，此樣式可恢復原本黃色底色的功能，惟須注意，部分佈景主題與此樣式不相容，有溢位或失效的情形產生。&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;7.&lt;a href=&quot;http://userstyles.org/styles/10&quot; title=&quot; http://userstyles.org/styles/10  --&amp;gt; http://userstyles.org/styles/10 --&amp;gt; http://userstyles.org/styles/10&quot;&gt;Combine Stop/Reload buttons&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;
合併Firefox的停止及重新讀取按鈕。&lt;br /&gt;
&lt;b&gt; &lt;/b&gt;&lt;br /&gt;
注意：倘若遇到無法隱藏狀況，請先「自訂」工具列，把 Stop Button 移到 Reload Button 的左邊(安裝網址有圖示說明)。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
以下為自行手動撰寫的樣式，煩請自行複製下列語法並儲存：&lt;br /&gt;
(PS.下列是之前從網路上看來並儲存在我的電腦中，但我已忘記各個來源連結，倘若有人知道，請告知我，以補上相關連結)&lt;b&gt;&amp;nbsp;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;1.Google Reader 字體&lt;/b&gt;&lt;br /&gt;
&lt;code&gt;@-moz-document url-prefix(&quot;https://www.google.com/reader&quot;) ,url-prefix(&quot;http://www.google.com/reader&quot;)&lt;br /&gt;
{&lt;br /&gt;
.entry .entry-body {max-width:100% !important; font-size:16px !important; line-height:150% !important;}&lt;br /&gt;
}&lt;/code&gt;&lt;br /&gt;
更改前：&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjj_2J1BAA-XzjGQR4tcNjJwsUwg8qNeAsVbNJOLw5omY6_V8xTgLA9RlTVabT27iRMH8HYU6BOQtxiFL3UO72k47QI94QYtFoR3_-Br9p8yy8QAp2cu61-gufUsdEm1ucfdfnytdbBqdd9/s640/GR+word+be-Stylish.jpg&quot; rel=&quot;lightbox[s]&quot; title=&quot; https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjj_2J1BAA-XzjGQR4tcNjJwsUwg8qNeAsVbNJOLw5omY6_V8xTgLA9RlTVabT27iRMH8HYU6BOQtxiFL3UO72k47QI94QYtFoR3_-Br9p8yy8QAp2cu61-gufUsdEm1ucfdfnytdbBqdd9/s640/GR+word+be-Stylish.jpg  --&amp;gt; https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjj_2J1BAA-XzjGQR4tcNjJwsUwg8qNeAsVbNJOLw5omY6_V8xTgLA9RlTVabT27iRMH8HYU6BOQtxiFL3UO72k47QI94QYtFoR3_-Br9p8yy8QAp2cu61-gufUsdEm1ucfdfnytdbBqdd9/s640/GR+word+be-Stylish.jpg --&amp;gt; https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjj_2J1BAA-XzjGQR4tcNjJwsUwg8qNeAsVbNJOLw5omY6_V8xTgLA9RlTVabT27iRMH8HYU6BOQtxiFL3UO72k47QI94QYtFoR3_-Br9p8yy8QAp2cu61-gufUsdEm1ucfdfnytdbBqdd9/s640/GR+word+be-Stylish.jpg&quot;&gt;&lt;img alt=&quot;GR+word+be-Stylish.jpg&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjj_2J1BAA-XzjGQR4tcNjJwsUwg8qNeAsVbNJOLw5omY6_V8xTgLA9RlTVabT27iRMH8HYU6BOQtxiFL3UO72k47QI94QYtFoR3_-Br9p8yy8QAp2cu61-gufUsdEm1ucfdfnytdbBqdd9/s320/GR+word+be-Stylish.jpg&quot; title=&quot;GR+word+be-Stylish.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
更改後：&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi5yIOGL1XPfzxXgQ6f_sCsOHQOP_qn3A_8cHz0u6NM_6XMGIIwPXI7N3Tp-9ASlSkFn6TLZxKWPAVsLaBgJWxYeN3-eKYfHVCeS8MDPNvhG1JVNXuQKWb__A3NhVqjz9M1TqL9YOHBAYX_/s640/GR%20word%20af%20-%20Stylish.jpg&quot; rel=&quot;lightbox[s]&quot; title=&quot; https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi5yIOGL1XPfzxXgQ6f_sCsOHQOP_qn3A_8cHz0u6NM_6XMGIIwPXI7N3Tp-9ASlSkFn6TLZxKWPAVsLaBgJWxYeN3-eKYfHVCeS8MDPNvhG1JVNXuQKWb__A3NhVqjz9M1TqL9YOHBAYX_/s640/GR%20word%20af%20-%20Stylish.jpg  --&amp;gt; https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi5yIOGL1XPfzxXgQ6f_sCsOHQOP_qn3A_8cHz0u6NM_6XMGIIwPXI7N3Tp-9ASlSkFn6TLZxKWPAVsLaBgJWxYeN3-eKYfHVCeS8MDPNvhG1JVNXuQKWb__A3NhVqjz9M1TqL9YOHBAYX_/s640/GR%20word%20af%20-%20Stylish.jpg --&amp;gt; https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi5yIOGL1XPfzxXgQ6f_sCsOHQOP_qn3A_8cHz0u6NM_6XMGIIwPXI7N3Tp-9ASlSkFn6TLZxKWPAVsLaBgJWxYeN3-eKYfHVCeS8MDPNvhG1JVNXuQKWb__A3NhVqjz9M1TqL9YOHBAYX_/s640/GR%20word%20af%20-%20Stylish.jpg&quot;&gt;&lt;img alt=&quot;GR+word+af+-+Stylish.jpg&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi5yIOGL1XPfzxXgQ6f_sCsOHQOP_qn3A_8cHz0u6NM_6XMGIIwPXI7N3Tp-9ASlSkFn6TLZxKWPAVsLaBgJWxYeN3-eKYfHVCeS8MDPNvhG1JVNXuQKWb__A3NhVqjz9M1TqL9YOHBAYX_/s320/GR+word+af+-+Stylish.jpg&quot; title=&quot;GR+word+af+-+Stylish.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
原本的Google Reader字體過小不易閱讀，經更改後，字體放大變得相當容易閱讀瀏覽。&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;2.網站大圖縮小(適用於朱學恆的阿宅萬事通事務所) &lt;/b&gt;&lt;br /&gt;
&lt;code&gt;@-moz-document url-prefix(&quot;http://blogs.myoops.org/lucifer.php&quot;)&lt;br /&gt;
{&lt;br /&gt;
img {&lt;br /&gt;
max-width: 100% !important;&lt;br /&gt;
&lt;span style=&quot;color: red;&quot;&gt;height: 100% !important;&lt;/span&gt;&lt;br /&gt;
}&lt;br /&gt;
}&lt;/code&gt;&lt;br /&gt;
以上語法是針對朱學恆的阿宅萬事通事務所所設定，如果要適用別的網站，請把第一行的網址更改為你要的網站網址並將標式紅色的語法刪去。&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;3.圖片失連圖示&lt;/b&gt;&lt;br /&gt;
&lt;code&gt;@namespace url(http://www.w3.org/1999/xhtml); &lt;br /&gt;
&lt;br /&gt;
@-moz-document url-prefix(http), url-prefix(file) {&lt;br /&gt;
img:-moz-broken{&lt;br /&gt;
-moz-force-broken-image-icon:1;&lt;br /&gt;
width:24px;&lt;br /&gt;
height:24px;&lt;br /&gt;
}&lt;br /&gt;
}&lt;/code&gt;&lt;br /&gt;
在使用IE時，當圖片失連會用一個紅色的X圖示(俗稱叉燒包XD)替代，但是在同樣的情況，Firefox卻是空白的一片，此語法就是此失連的圖片用替代圖示顯示出來。&lt;br /&gt;
&lt;br /&gt;
相關閱讀：&lt;br /&gt;
&lt;a href=&quot;http://playpcesor.blogspot.com/2008/04/stylish.html&quot; title=&quot; http://playpcesor.blogspot.com/2008/04/stylish.html  --&amp;gt; http://playpcesor.blogspot.com/2008/04/stylish.html --&amp;gt; http://playpcesor.blogspot.com/2008/04/stylish.html&quot;&gt;Stylish：看著不爽？隨手換掉網站的閱讀版面與視覺效果 | 電腦玩物&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://briian.com/?p=5417&quot; title=&quot; http://briian.com/?p=5417  --&amp;gt; http://briian.com/?p=5417 --&amp;gt; http://briian.com/?p=5417&quot;&gt;17個讓Gmail更華麗、更好用的「Stylish佈景主題」 （Firefox外掛）| 重灌狂人&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://seciblog.blogspot.com/feeds/3157438716834133804/comments/default' title='張貼留言'/><link rel='replies' type='text/html' href='http://seciblog.blogspot.com/2010/01/fx-stylish.html#comment-form' title='0 個意見'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3768925651175909456/posts/default/3157438716834133804'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3768925651175909456/posts/default/3157438716834133804'/><link rel='alternate' type='text/html' href='http://seciblog.blogspot.com/2010/01/fx-stylish.html' title='[Fx套件] Stylish-擁有與眾不同的網站版面'/><author><name>Alec</name><uri>http://www.blogger.com/profile/01463694164725658947</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='31' src='http://3.bp.blogspot.com/_3XmLB7Obrrg/SrMgkHxdMmI/AAAAAAAAAv4/BTn-IA3z2Rk/S220/Xbox360.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgKwhIt6CaXznikRUdkdjbICZ8syOyxhvCGfgPVW_N4XCOMVOtdqCvrfuE_aUvRIyalTvWc8m5N6cDpJadkktxHIhUm-gR78RNT4G5JSxTo5gwpaNTM9u90Vhuae6OBdnMpwxOjhx8I1f18/s72-c/Google+Reader-Stylish.jpg" height="72" width="72"/><thr:total>0</thr:total></entry></feed>