顯示具有 瀏覽器相關 標籤的文章。 顯示所有文章
顯示具有 瀏覽器相關 標籤的文章。 顯示所有文章

星期二, 8月 02, 2011

GreaseMonkey 安裝腳本延遲取消

安裝GreaseMonkey腳本總是要倒數,GreaseMonkey一升級就又會倒數,記錄下取消的方式。
1、關閉Firefox
2、到Profile\xxxxxx.default\extensions\
e4a8a97b-f2ed-450b-b12d-ee082ba24781目錄或 e4a8a97b-f2ed-450b-b12d-ee082ba24781.xpi中
編輯chrome\greasemonkey.jar\content\install.js內的:
this.seconds_ = 4;
改為
this.seconds_ = 0;

星期六, 1月 15, 2011

必備的GreaseMonkey腳本(YouTube, Google) Must Have GreaseMonkey Scripts for YouTube, Google

YouTube會自動播放,又不能直接下載。
Google一些缺點讓我覺得不夠好用,所以找了一些腳本來改善這些情況。
YouTube:
Download YouTube Videos as MP4
http://userscripts.org/scripts/show/25105
YousableTubeFix(增加一些YouTube選項)
http://userscripts.org/scripts/show/13333

Google Search:
Disable instant Google Previews
http://manu.fun.gg/
Google Image Relinker Mod
http://userscripts.org/scripts/show/5059
Old Google Images
http://userscripts.org/scripts/show/82145

陸續補充中

星期五, 12月 31, 2010

[Firefox] 加大你的側邊欄字體大小 Enlarge your sidebar fontsize

Firefox的側邊欄每次要找書籤或歷史時,字體小的像是要看到眼睛脫窗。
在此提供用UserChrome.css或Stylish的方式來放大。
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
#sidebar-box *,
#bookmarksPanel *, #bookmarks-view *,
#history-panel *, #historyTree {
font-size:12pt !important;
}

引用自:http://support.mozilla.com/hy-AM/questions/751604#answer-102454

星期二, 5月 25, 2010

[通用]漫畫批次下載技巧

現在一堆漫畫網站都是用亂數檔名命名,很難再像以前一樣用批次下載。
幸虧有善心人士做了針對網站的批次下載軟體,但是總是有不合的時候。
在此提供一個通用的方法,供各位使用。(不附操作圖解)

準備安裝 Mozilla Firefox及套件:
[必備]AutoPager(連續翻頁)
[必備]ImgLikeOpera(管理圖片顯示)
[必備]DownThemAll(下載管理)
[建議]AdBlock Plus(阻擋廣告)

步驟:
1. 首先用AdBlock Plus將網站廣告全阻擋。
2. 針對漫畫網站編寫翻頁規則。
3. 利用ImgLikeOpera將網站圖片全部阻擋顯示。
4. 用AutoPager連續顯示頁面(因為沒顯示圖片會很快載入所有頁面)
5. 用DownThemAll下載頁面內嵌圖片,並利用Item Number重新命名存檔。

星期一, 11月 09, 2009

fasTun - HTTP Compression, 讓Firefox 也有Opera Turbo的功能

不得不說,Opera的新功能真的都很好用。
自從Opera 推出Opera Turbo後,又有股想讓我跳槽回Opera的衝動,特別是對像我這種龜速網路的使用者。
還好找到在Firefox找到有http compress的套件 -- fasTun Tools。
加上 FoxyProxy + fasTun Tools 應該會更好用。

官方頁面http://fastun.com/
Mozilla AddOns頁面︰https://addons.mozilla.org/zh-TW/firefox/addon/13729

注意使用fasTun需要註冊(免費,但是有流量限制)︰
註冊頁面(http://fastun.com/registration/)

並在官方的設定頁面,設定要壓縮的部份。


在FoxyProxy新增fasTun Proxy︰

設定Proxy︰
http proxy︰fastun.com
port :7000

以下設為白名單(供參考)︰
http://*.htm
http://*.html

最後,別忘記把右下角的紅T按成綠色,順便看下統計頁面,fasTun有沒有作用。


星期三, 6月 17, 2009

Peers - Instant Search

套件簡介:在位址列及搜尋列中預先呈現搜尋結果。
套件版本:0.9.2
套件作者:The Peers Bros.
相容於:
 Firefox:
 3.0 – 3.5
圖片預覽:


套件下載:
  • 從 Mozilla Addons 下載 官方版本
  • 下載 修改版本(僅留en-US,zh-CN,zh-TW語系,修正搜尋結果的語系)


星期三, 11月 05, 2008

移除Firefox套件中無用的語系

移除從網路上下載回來的xpi壓縮檔中的他國語系。

locale remover.bat︰一次移除目錄下所有xpi壓縮檔的他國語系
locale.bat︰移除單一xpi壓縮檔中的他國語系(可用拖拉方式處理單一xpi檔)
注意事項︰
● 已經安裝WinRAR
● 將WinRAR的安裝目錄加入至系統環境變數PATH
● 請將批次檔放置與xpi壓縮檔相同的目錄
● 不得含有Chromelocale等目錄
● 請自行備份xpi壓縮檔


locale remover.bat的內容:
@echo off
FOR /F %%a IN ('dir /b *.xpi') DO "locale.bat" "%%a"


locale.bat的內容(注意︰xpi檔的存放目錄請自行更換):
@echo off
cd /d "xpi檔的存放目錄"
winrar x %1 chrome

IF NOT EXIST chrome\*.jar GOTO nojar
move chrome\*.jar .\
rd chrome /s /q
FOR /F %%a IN ('dir /b *.jar') DO SET JARFILE=%%a
winrar x *.jar "locale\*" \
move "locale\en-US" "en-US"
move "locale\zh-TW" "zh-TW"
rd locale /s /q
md locale
move en-US locale
move zh-TW locale
winrar d %JARFILE% locale
winrar u %JARFILE% "locale"
md chrome
move *.jar chrome
winrar d %1 chrome\%JARFILE%
winrar u %1 chrome
rd chrome /s /q
rd locale /s /q
GOTO end

:nojar
move chrome\locale locale
rd chrome /s /q
md chrome
move locale chrome\locale
move "chrome\locale\en-US" "en-US"
move "chrome\locale\zh-TW" "zh-TW"
rd chrome\locale /s /q
md chrome\locale
move en-US chrome\locale
move zh-TW chrome\locale
winrar d %1 chrome\locale
winrar u %1 chrome
rd chrome /s /q

:end

星期二, 11月 04, 2008

ScrapBook+

haselnuss 修正了原本 Gomita's ScrapBook (v1.3.3.7) 的一些bug並且加入了一些不錯的功能。

特色:

● 可自訂擷取頁面之TimeOut的時間(砍站時,真的是太好用了XD)。
● 自訂儲存的CharSet。

P.S. 在安裝ScrapBook+後,可以直接移除原本安裝的Gomita's ScrapBook

擷取畫面︰


套件頁面(Mozilla Add-ons):https://addons.mozilla.org/en-US/firefox/addon/8186

星期五, 7月 18, 2008

用7zip+批次檔 快速打包Firefox Portable到隨身碟

外出時打包Firefox Portable到隨身碟的工作就交給批次檔吧。

p.s. 7zip官方網站(http://www.7-zip.org/)


操作步驟:

step 1. 在Firefox Portable的資料夾名稱改為FirefoxPortable,確保與後續步驟的批次檔內的資料夾名稱相同。

step 2. 在FirefoxPortable的目錄下,建立一個7z的資料夾。並將7-zip資料夾內的7z.exe、7z.dll、7z.sfx複製到7z的資料夾內。

step 3. 將下列文字貼在筆記本(notepad.exe)內,儲存在FirefoxPortable的目錄下,並且存成批次檔(例如: pack FXP.bat)。
@echo off
move "7z\7z.exe" "..\7z.exe"
move "7z\7z.dll" "..\7z.dll"
move "7z\7z.sfx" "..\7z.sfx"
cd ..
echo 正在壓縮檔案 %cd%FXP.exe ...
7z a -mmt=on -sfx7z.sfx "FXP.tmp" "FirefoxPortable\"
move "7z.exe" "FirefoxPortable\7z\7z.exe"
move "7z.dll" "FirefoxPortable\7z\7z.dll"
move "7z.sfx" "FirefoxPortable\7z\7z.sfx"
echo FXP.exe 壓縮完成。

echo 移動壓縮檔 %cd%FXP.exe 到隨身碟...
if exist "D:\FXP.exe" goto movetod
if exist "E:\FXP.exe" goto movetoe
if exist "F:\FXP.exe" goto movetof
if exist "G:\FXP.exe" goto movetog
if exist "H:\FXP.exe" goto movetoh
if exist "I:\FXP.exe" goto movetoi

echo 壓縮檔 %cd%FXP.exe 移動失敗,請手動移動檔案。
pause
exit

:movetod
move /y "FXP.tmp" "D:\FXP.exe"
goto fin
:movetoe
move /y "FXP.tmp" "E:\FXP.exe"
goto fin
:movetof
move /y "FXP.tmp" "F:\FXP.exe"
goto fin
:movetog
move /y "FXP.tmp" "G:\FXP.exe"
goto fin
:movetoh
move /y "FXP.tmp" "H:\FXP.exe"
goto fin
:movetoi
move /y "FXP.tmp" "I:\FXP.exe"
goto fin

:fin
echo FirefoxPortable自解檔已經儲存到隨身碟。
pause


step 3. 以後要打包Firefox Portable時,可以點選FXP資料夾的批次檔,或者自行在桌面建立捷徑。

星期二, 2月 19, 2008

用Opera 也能下載gogobox

Opera 雖然不能直接下載gogobox,但是可以經由滑鼠手勢呼叫IE(iexplorer)下載。

新增滑鼠手勢步驟︰

Step 1. 點選選單列上的〔工具〕→〔功能設定〕

Step 2. 在Application的地方,新增一個滑鼠手勢(操作畫面如下圖所示)︰

滑鼠動作︰GestureUp, GestureRight
動作︰Execute program, "C:\Program Files\Internet Explorer\iexplore.exe", "%l"

滑鼠手勢使用方法︰在gogobox下載連結上,按住滑鼠右鍵往上方然後往右方移動,接著放開右鍵,就會呼叫IE。

星期三, 12月 19, 2007

Opera自訂快速翻頁(下一頁)

http://publish.it168.com/2007/0731/20070731012503.shtml

整理的一下Opera的快速翻頁,本篇將不定期更新。

請用支援UTF-8的文字編輯器,編輯此檔案: C:\Program Files\Opera\fastforward.ini

在中文部份替換成下面的︰


"[下一頁]"
"[下頁]"
"[繼續]"
"往后>>"
翻下一頁
翻下一页
下一頁
下一頁>
下一頁>>
下一頁
下一篇
下一個
下一張
下一幅
下一章
下一節
后一頁
下一步
翻下頁
翻下页
前進
繼續
翻頁
下頁
下頁
下篇
后頁
>>

星期日, 12月 02, 2007

用Opera內建檔廣告功能阻擋 Google Ads

我的小黑螢幕解析度太低(只有1024x768),不想看到橫向捲軸出現佔掉瀏覽器空間,所以只好把google廣告都檔掉。


Step1: 點選〔工具〕->〔進階〕->〔被阻擋的內容〕。


Step2: 新增一個阻擋網站:

http://*.googlesyndication.com/*

星期一, 9月 17, 2007

Opera urlfilter.ini

我把adblock plus的一些阻擋列表丟到了opera,如果你有在用opera可以試試看。

另外,本篇會不定期更新。


p.s. 請勿在opera開啟時編輯urlfilter.ini,還有最好採用支援utf8的文字編輯器作編輯。

請編輯 %appdata%\Opera\Opera\profile\urlfilter.ini,並在[exclude]下方,貼上下列的阻擋清單︰


*(columnad)*
*(globalad)*
*(header_ad)*
*(horizontalAd)*
*.247realmedia.*
*.3dstats.*
*.51.la/*
*.51yes.com/*
*.9v.cn/*
*.ad-flow.com/*
*.adbrite.com/*
*.addfreestats.*
*.adsensedetective.*
*.affilimatch.*
*.allyes.com/*
*.baidu.com*
*.bc.yahoo.com/b?P
*.betarget.*
*.bronto.*
*.chart.dk/*
*.clickaider.*
*.clickalyzer.*
*.clickclick.*
*.clickdensity.*
*.clicktale.net*
*.clicktracks.*
*.cn/*/union/*
*.eloqua.*
*.eresmas.*
*.esomniture.*
*.etracker.*
*.etrafficcounter.*
*.everesttech.*
*.evisitanalyst.*
*.fastclick.net/*
*.free-counter.*
*.free-counters.*
*.fusestats.*
*.gemius.*
*.gif?referrer
*.google-analytics.*
*.google.com/coop/cse/*
*.googleadservices.*
*.histats.*
*.hitbox.*
*.hitfarm.*
*.hitmatic.*
*.hittail.*
*.hittracker.*
*.hotlog.*
*.ilogbox.*
*.instadia.*
*.intelli-direct.*
*.komtrack.*
*.landingpg.*
*.linkconnector.*
*.masterstats.*
*.myaffiliateprogram.*
*.net-filter.*
*.netflame.cc*
*.netratings.*
*.nextstat.*
*.oewabox.*
*.offermatica.*
*.onestat.*
*.opentracker.*
*.optimost.*
*.overture.com/*
*.rapidstats.*
*.research-int.*
*.sageanalyst.*
*.searchfeed.*
*.sedotracker.*
*.serving-sys.*
*.sexcounter.*
*.sextracker.*
*.shinystat.*
*.sitemeter.*
*.sitestat.*
*.sitetracker.*
*.sptag.com*
*.spylog.*
*.statcounter.*
*.stats4free.*
*.surfaid.*
*.thecounter.com/*
*.tinycounter.*
*.tns-counter.*
*.tophits4u.*
*.traceworks.*
*.traffic4u.*
*.trafficmaxx.*
*.web-stat.*
*.webtrendslive.*
*.xiti.com/*
*/__utm.js|*
*/ad.*
*/ad/*
*/ad_*
*/adfclick?*
*/adfile/*
*/adimage.php*
*/adimages/*
*/adlogger/*
*/admentor/*
*/ads.*
*/ads/*
*/adsence.*
*/adsense.*
*/adshow/*
*/adsunion/*
*/adtrack.*
*/adv.*
*/adv/*
*/advertising/*
*/analytics/wt.js*
*/c..com/c.gif?*
*/canwest_s_code.js*
*/cetrk.com/*
*/cgicounter.*
*/chkpt.php?*
*/clickcounter/*
*/clickheat.js*
*/clicktracker.*
*/clixdom.js*
*/cmdatatagutils.js*
*/content.adtegrity*
*/count*.enet.com.cn/*
*/count.asp?*
*/count.cgi?*
*/Count.exe?*
*/count.php?*
*/counter.asp*
*/counter.cgi?*
*/counter.php*
*/counter/?*
*/counter?*
*/countercollector/*
*/dcs.gif?*
*/dcs_tag.js*
*/dtjdel.php?n
*/eluminate.js*
*/fastcounter.*
*/geov2.js|*
*/gg.*
*/gg/*
*/hbx.js|$~other*
*/indextools.js*
*/js/behave.js*
*/js/hitbox*
*/js/urchin*
*/linkcount*
*/livestats_*
*/log.go.com*
*/Logger?*
*/mint/?record*
*/nettracker/*
*/ntpagetag.*
*/omniture/?path
*/omniture_code*
*/pixel.gif?*
*/record.php?*
*/record?&url
*/ruixing/*
*/s_code.js|*
*/s_code_$script*
*/site-tracker.*
*/site_specific_code.js*
*/site_stats/*
*/sitestat.js*
*/SogouUnion*
*/stats.js*
*/stats.php*
*/stats_insight.*
*/StatsRecorder.php*
*/taobao.htm|*
*/techprops.js*
*/tmv11.js*
*/topcnt?*
*/trace.aspx?*
*/track.gif?*
*/track.js*
*/tracker.js*
*/tracker.php*
*/tracker?*
*/traffic/?*
*/trans_pixel.asp?*
*/up.nytimes.*
*/upixel.js*
*/urchin.js*
*/webcounter.*
*/webstats/*
*/webtrekk*
*/webtrends$script*
*/wtid.js*
*?&www%$image*
*?http&$image*
*_ad.*
*_ad_*
*_ads.*
*addcontrol.net*
*adframe*
*ATAtracker*
*banner*
*btn.clickability.com/*
*c2.gostats.*
*coremetrics*
*count&AdID
*counter.ixlink.net/*
*directtrack.*
*doubleclick.net/*
*easyhitcounters.*
*extreme-dm.com*
*geo.yahoo.com/serv?s
*getclicky.com/$script*
*googlereferer*
*guanggao*
*hit.stat.*
*hitslink*
*http://103bees.*
*http://4stats.*
*http://ad-track*
*http://adlog.*
*http://click.*
*http://count.*
*http://counter.*
*http://counters.*
*http://countus$script*
*http://dw.com.com/?$~link,~subdocument*
*http://neocounter.*
*http://pr.blogflux.*
*http://rsi.msnbc.msn.*
*http://stat.*
*http://statistics.*
*http://stats.*
*http://stats2.*
*http://track.*
*http://track1.*
*http://track2.*
*http://track3.*
*http://tracker.?*
*http://tracking.*
*http://utm.*
*http://was.navlink.*
*inet-tracker.de*
*infotech.log*
*insightxe.*
*linkCount?*
*linktech.cn/*
*livestat.*
*MozillaDefaultPlug-in*
*nedstatbasic.*
*ping.nnselect.*
*quantserve.*
*sitecatalyst$script*
*sndanewbar.aspx*
*statistik-gallup.*
*stats/track*
*tracking.js|*
*TrackingCode*
*TrackingLog*
*webstats4u.*
http://pagead2.googlesyndication.com/*

星期五, 2月 16, 2007

Bookmarklets 整理

整理出了一些個人認為還不錯用的bookmarklets。

安裝方式:將連結拖放至你的書籤列上。

以下的bookmarklets皆可在Mozilla Firefox上使用:

Force Wrap (強制換行)

Google Cache
(用google cache 檢視目前的頁面)

Text Color (變更頁面文字的顏色)

Page Color (變更頁面背景的顏色)

Coralize (連接大陸
網站過慢時,可以改用coralize)

Highlight Regexp (用正規表示式,反白頁面文字)

FormTextResizer (用滑鼠改變表單中的文字方框大小)


WBR tag test page(Force Wrap test page):http://www.quirksmode.org/oddsandends/wbr.html

來源引用自:
http://www.blogmarks.net/marks/tag/bookmarklet,web
http://userscripts.org/scripts/show/1847

星期四, 2月 15, 2007

Force Wrap - Bookmarklet

http://userscripts.org/scripts/show/1847

Intro:Use <wbr> tag to wrap the long words and refresh the inner html page after it was finished.

Force Wrap (Drag it to your Bookmarks/Favorites)

 
javascript:(function(){var D=document; F(D.body); function F(n){var u,r,c,x; if(n.nodeType==3){ u=n.data.search(/\S{45}/); if(u%3E=0) { r=n.splitText(u+45); n.parentNode.insertBefore(D.createElement(%22WBR%22),r); } }else if(n.tagName!=%22STYLE%22 && n.tagName!=%22SCRIPT%22){for (c=0;x=n.childNodes[c];++c){F(x);}} } })();document.body.innerHTML = document.body.innerHTML; void 0;


Here is the WBR tag test Page:
http://www.quirksmode.org/oddsandends/wbr.html

星期日, 12月 31, 2006

目前Firefox的設定

產生日期: Tue Jan 23 2007 00:00:19 GMT+0800

User Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-TW; rv:1.8.1.1) Gecko/20061225 BonEcho/2.0.0.1 (pigfoot)

Build ID: 2006122509

啟用擴充套件: [21]
停用擴充套件: [4]擴充套件: 25

已安裝佈景主題: [2]已安裝外掛: (11)
  • Adobe Acrobat
  • Java(TM) 2 Platform Standard Edition 5.0 Update 9
  • Microsoft® DRM
  • Mozilla Default Plug-in
  • PCMan BBS Plugin for Mozilla
  • PCMan's IE Tab Plug-in for Mozilla/Firefox
  • QuickTime Plug-in 6.5.1
  • RealPlayer Version Plugin
  • RealPlayer(tm) G2 LiveConnect-Enabled Plug-In (32-bit)
  • Shockwave Flash
  • Windows Media Player Plug-in Dynamic Link Library

星期五, 10月 27, 2006

泛用adblock plus filters...

放一份在這,免的到時候找不到。

/yimg\.com/(a[^u]|i/(mntl|auction))(swf)?/
/(row\.bc\.|tw\.ard\.)+yahoo/
/[\?\.\+\-/_=&#]\d{0,3}(x|banner(s|\d|id=\d*)?|guanggao|gg|ad(s?view|pop(s?|ups?)|result|s(ense|how|erver|s?ite|s?ide)?|(double|fast)clicks?|[fv](show|click)?|ver(t(ising)?)?|pic(s)?|float|tags?|frame(s)?)?)\d{0,3}([\?\.\+\-\)/_=]|$)/