Similar Pages
Allows you to browse related pages.
Similar Pagesคืออะไร?
Similar Pages เป็นส่วนขยายของ Chrome ที่พัฒนาโดย zamfofex และคุณลักษณะหลักของมันคือ "Allows you to browse related pages."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Similar Pages
ดาวน์โหลดไฟล์ส่วนขยาย Similar Pages ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension gives you the ability to see webpages related to the one you are currently browsing. Whether you are looking at the documentation for your next programming project, trying to find your next favorite chocolate cake recipe, or even trying to research information for a school project, this extension can help you. By using Google Search technology, webpages from all throughout the Web are searched, and the relevant one that share a similar content to the one you are currently visiting are presented to you.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Similar Pages |
ID | lpedgppinmnpgdblfmjdppaeeldcpnil |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/similar-pages/lpedgppinmnpgdblfmjdppaeeldcpnil |
คำอธิบาย | Allows you to browse related pages. |
ขนาดไฟล์ | 12.58 KB |
จำนวนการติดตั้ง | 1,111 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2019-04-09 |
วันที่เผยแพร่ | 2019-04-05 |
ผู้พัฒนา | zamfofex |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Similar Pages", "description": "Allows you to browse related pages.", "version": "1.1", "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "storage", "tabs" ], "browser_action": { "default_title": "Show Similar" }, "options_ui": { "page": "options.html", "open_in_tab": false }, "background": { "scripts": [ "default-options.js", "background.js" ], "persistent": false }, "web_accessible_resources": [ "main.html" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "always-injected.css" ], "js": [ "always-injected.js" ], "run_at": "document_start" } ], "incognito": "split", "browser_specific_settings": { "gecko": { "id": "[email protected]" } } } |