Wikipedia Link Expander
Changes the title text for wikipedia links to be the first paragraph of that page
Wikipedia Link Expanderคืออะไร?
Wikipedia Link Expander เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jacloar และคุณลักษณะหลักของมันคือ "Changes the title text for wikipedia links to be the first paragraph of that page"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Wikipedia Link Expander
ดาวน์โหลดไฟล์ส่วนขยาย Wikipedia Link Expander ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Wikipedia Link Expander is for people who enjoy browsing articles on Wikipedia and exploring all the links. This extension allows you to hover over a link in Wikipedia and view the first paragraph of information in that article so you can read without clicking away. It isn't very good, it is incredibly buggy, and there are probably better alternatives out there, but we wanted to show off our version!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | olcpeoibndddjeocibmiabmohnedcdif |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/wikipedia-link-expander/olcpeoibndddjeocibmiabmohnedcdif |
คำอธิบาย | Changes the title text for wikipedia links to be the first paragraph of that page |
ขนาดไฟล์ | 48.91 KB |
จำนวนการติดตั้ง | 45 |
เวอร์ชันปัจจุบัน | 1.0.1 |
อัปเดตครั้งล่าสุด | 2015-02-08 |
วันที่เผยแพร่ | 2015-02-08 |
คะแนน | 5.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | jacloar |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Wikipedia Link Expander", "description": "Changes the title text for wikipedia links to be the first paragraph of that page", "version": "1.0.1", "icons": { "16": "images\/wikipediaicon16.png", "48": "images\/wikipediaicon48.png", "128": "images\/wikipediaicon128.png" }, "permissions": [ "tabs", "activeTab", "contentSettings", "http:\/\/*.wikipedia.org\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*.wikipedia.org\/*" ], "js": [ "jquery-1.11.2.min.js", "wikipediaHover.js" ] } ] } |