FastForward
Opera like FastForward feature in your chrome browser.
FastForwardคืออะไร?
FastForward เป็นส่วนขยายของ Chrome ที่พัฒนาโดย damonachey และคุณลักษณะหลักของมันคือ "Opera like FastForward feature in your chrome browser."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย FastForward
ดาวน์โหลดไฟล์ส่วนขยาย FastForward ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Opera has a neat feature called FastForward that detects 'next' links on pages and allows you to use the space bar to not only scroll down, but when the bottom of the page is hit it will automatically advance to the next page for continuous mouse free reading. This extension brings the same features opera users were used to to the chrome browser. Please feel free to reply with any questions or problems with the extension. History: 1.2.2 Removed 'more' as a next word, it caused trouble with many sites and isn't worth it as a default, but can always be added back in if you need it on the options page. 1.2.1 Added discovery of image links with alt="next" tags 1.1.2 Fixed bug in loading default excludedUrl list. 1.1.1 Fixed bug detecting input field. 1.1.0 Add ability to exclude links from being detected as a 'next page' link. For example don't treat the 'More' link from the google drop down as a next page link. 1.0.2 Exclude GMail popup from being fast forwarded. 1.0: Initial release Fast Forward
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | bclfjoomnokgllmiiidbdfjakojplnbo |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/fastforward/bclfjoomnokgllmiiidbdfjakojplnbo |
คำอธิบาย | Opera like FastForward feature in your chrome browser. |
ขนาดไฟล์ | 34.74 KB |
จำนวนการติดตั้ง | 1,000 |
เวอร์ชันปัจจุบัน | 1.2.2 |
อัปเดตครั้งล่าสุด | 2013-07-11 |
วันที่เผยแพร่ | 2013-07-11 |
คะแนน | 3.67/5 รวมทั้งหมด 18 คะแนน |
ผู้พัฒนา | damonachey |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://www.achey.net/2013/05/22/fastforward |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "FastForward", "version": "1.2.2", "manifest_version": 2, "description": "Opera like FastForward feature in your chrome browser.", "content_scripts": [ { "js": [ "fastforward.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_end" } ], "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "16": "16x16.png", "48": "48x48.png", "128": "128x128.png" }, "options_page": "options.html", "background": { "page": "background.html" } } |