History Finder
Show the relevant pages in your browsing history while searching on Google or viewing any web page.
History Finderคืออะไร?
History Finder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://peterchen.vc และคุณลักษณะหลักของมันคือ "Show the relevant pages in your browsing history while searching on Google or viewing any web page."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย History Finder
ดาวน์โหลดไฟล์ส่วนขยาย History Finder ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
History Finder This extension will show the relevant browsing history while searching on Google or viewing any webpage. It uses an intelligent algorithm to search your browsing history and can help you to find the important web page you visited before. It also supports a customized list of web site or file type blacklist. Disclaimer: No browsing history is collected or stored remotely. All the history data is queried from Chrome History API hence is only stored and available to your local machine. Update History: v0.6 Fix null error for Google search page About Chromeism.com We are interested in everything about Chrome and Chromebook!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | History Finder |
ID | eailembbokjdoehchhlpbhnjlkecgack |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/history-finder/eailembbokjdoehchhlpbhnjlkecgack |
คำอธิบาย | Show the relevant pages in your browsing history while searching on Google or viewing any web page. |
ขนาดไฟล์ | 1.14 MB |
จำนวนการติดตั้ง | 455 |
เวอร์ชันปัจจุบัน | 0.6 |
อัปเดตครั้งล่าสุด | 2018-05-22 |
วันที่เผยแพร่ | 2018-05-21 |
คะแนน | 4.40/5 รวมทั้งหมด 10 คะแนน |
ผู้พัฒนา | https://peterchen.vc |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://peterchen.vc/history-finder/ |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "History Finder", "short_name": "History Finder", "version": "0.6", "author": "[email protected]", "description": "Show the relevant pages in your browsing history while searching on Google or viewing any web page.", "permissions": [ "history", "tabs", "storage" ], "icons": { "16": "icon\/icon_16.png", "32": "icon\/icon_32.png", "48": "icon\/icon_48.png", "128": "icon\/icon_128.png" }, "page_action": { "default_popup": "popup.html", "default_icon": "icon\/icon_32_gray.png" }, "options_page": "options.html", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/jquery.min.js", "js\/tools.js", "js\/content.js" ], "run_at": "document_end", "css": [ "css\/table.css" ] } ], "web_accessible_resources": [ "options.html", "icon\/*" ], "background": { "scripts": [ "js\/wordlist.js", "js\/tools.js", "js\/background.js" ] }, "manifest_version": 2 } |