Wiki Preview
Preview Wikipedia links for easier reading.
Wiki Previewคืออะไร?
Wiki Preview เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://ictech.fr และคุณลักษณะหลักของมันคือ "Preview Wikipedia links for easier reading."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Wiki Preview
ดาวน์โหลดไฟล์ส่วนขยาย Wiki Preview ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
When you're reading a Wikipedia articles, you often just want to have a glimpse of what other articles are about, without getting distracted from your main article.
This extension allows you to view a summary of any link on Wikipedia (first paragraph). This way you can focus on your main article you are reading, and still have a glimpse of what the other articles are about. ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | keodbghcggpcaaihokbhmeehadnkemgc |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/wiki-preview/keodbghcggpcaaihokbhmeehadnkemgc |
| คำอธิบาย | Preview Wikipedia links for easier reading. |
| ขนาดไฟล์ | 138 KB |
| จำนวนการติดตั้ง | 148 |
| เวอร์ชันปัจจุบัน | 1.0 |
| อัปเดตครั้งล่าสุด | 2014-05-30 |
| วันที่เผยแพร่ | 2014-05-29 |
| คะแนน | 5.00/5 รวมทั้งหมด 8 คะแนน |
| ผู้พัฒนา | https://ictech.fr |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | http://ictech.fr/wiki/ |
| URL หน้าช่วยเหลือ | http://ictech.fr/wiki/ |
| ภาษาที่รองรับ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Wiki Preview",
"version": "1.0",
"homepage_url": "http:\/\/ictech.fr\/wiki\/",
"description": "Preview Wikipedia links for easier reading.",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon.png"
},
"browser_action": [],
"background": {
"scripts": [
"background.js"
]
},
"web_accessible_resources": [
"*.map"
],
"content_scripts": [
{
"matches": [
"http:\/\/*.wikipedia.org\/*"
],
"css": [
"overlay.css"
],
"js": [
"jquery-2.0.3.min.js",
"iframeResizer.min.js",
"wikipreview_ch.js"
]
}
]
} | |