QuickWiki

Preview articles on Wikipedia and other wikis - become a wiki power-user!

QuickWikiคืออะไร?

QuickWiki เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Vicky Chijwani และคุณลักษณะหลักของมันคือ "Preview articles on Wikipedia and other wikis - become a wiki power-user!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย QuickWiki

ดาวน์โหลดไฟล์ส่วนขยาย QuickWiki ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        UPDATE: Now works with ALL wikis across the web!
UPDATE: Simply press Esc to close the popup. You're welcome :)
FIXED: https support on Wikipedia.
FIXED: support for wikia.com

An extension to preview links to other wiki articles while browsing any wiki. Shift+Left Click on any article link to preview it.

The source code is open and available on GitHub, for anyone looking to hack on it: https://github.com/vickychijwani/quickwiki.

Bug reports and pull requests are welcome! Bugs and feature requests should be submitted on GitHub: https://github.com/vickychijwani/quickwiki/issues.

Developed by Vicky Chijwani and Vinay Kola.

Feel free to contact us with feedback:
Email: vickychijwani [at] gmail.com, vinaykola [at] gmail.com
Twitter: @vickychijwani, @vinaykola

Contributors:
- Koustuv Sinha

CHANGE LOG:
v1.1.3
 - Works on wikia.com
 - Improved window positioning algorithm

v1.1.2
 - Works with https

v1.1
 - Now works on ANY wiki (not just Wikipedia) in ANY language!
 - Added feature to expand preview window for focused browsing in the preview itself
 - Interface overhaul
 - Bug-fixes

v1.0
 - Added minimize feature.
 - Added open in new tab feature.
 - Added feature to drag the preview window around the page.
 - Preview window "intelligently" calculates its position based on the link's length and position on the page.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ QuickWiki QuickWiki
ID bbidbpklpaghmdjnlkkhkkobcbjgbkbd
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/quickwiki/bbidbpklpaghmdjnlkkhkkobcbjgbkbd
คำอธิบาย Preview articles on Wikipedia and other wikis - become a wiki power-user!
ขนาดไฟล์ 712 KB
จำนวนการติดตั้ง 259
เวอร์ชันปัจจุบัน 1.2.0
อัปเดตครั้งล่าสุด 2017-06-06
วันที่เผยแพร่ 2017-06-06
คะแนน 4.68/5 รวมทั้งหมด 25 คะแนน
ผู้พัฒนา Vicky Chijwani
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/vickychijwani/quickwiki
URL หน้าช่วยเหลือ https://github.com/vickychijwani/quickwiki/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "QuickWiki",
    "version": "1.2.0",
    "description": "Preview articles on Wikipedia and other wikis - become a wiki power-user!",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "page_action": {
        "default_icon": "icon.png",
        "default_title": "QuickWiki is enabled."
    },
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/wiki\/*"
            ],
            "css": [
                "style.css",
                "icons.css",
                "scrollbar.css",
                "loader.css"
            ],
            "js": [
                "jquery-1.11.2.min.js",
                "script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "icons.png"
    ],
    "manifest_version": 2
}