Wing Scholar summary add-on

This extension works off Google Scholar result pages, allowing the user to view abstracts or other machine generated summaries.

Wing Scholar summary add-onคืออะไร?

Wing Scholar summary add-on เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://sites.google.com/site/wingnus และคุณลักษณะหลักของมันคือ "This extension works off Google Scholar result pages, allowing the user to view abstracts or other machine generated summaries."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Wing Scholar summary add-on

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

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

                        This extension works off Google Scholar result pages, allowing the user to view abstracts or other machine generated summaries.                    

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

ชื่อ Wing Scholar summary add-on Wing Scholar summary add-on
ID ndhnkphdpaapcalgmchakcadgmcphagh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/wing-scholar-summary-add/ndhnkphdpaapcalgmchakcadgmcphagh
คำอธิบาย This extension works off Google Scholar result pages, allowing the user to view abstracts or other machine generated summaries.
ขนาดไฟล์ 435 KB
จำนวนการติดตั้ง 260
เวอร์ชันปัจจุบัน 1.0.10
อัปเดตครั้งล่าสุด 2014-11-17
วันที่เผยแพร่ 2014-11-16
คะแนน 1.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา https://sites.google.com/site/wingnus
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://wing.comp.nus.edu.sg/portal/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Wing Scholar summary add-on",
    "description": "",
    "version": "1.0.10",
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "http:\/\/scholar.google.com.sg\/*",
        "tabs",
        "storage",
        "http:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "popup.html"
    ],
    "background": {
        "scripts": [
            "background.js",
            "jquery-1.11.0.min.js",
            "jquery.hotkeys-0.7.9.min.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/scholar.google.com.sg\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-1.11.0.min.js",
                "jquery.hotkeys-0.7.9.min.js"
            ],
            "css": [
                "core.css"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ],
    "commands": {
        "enable": {
            "suggested_key": {
                "default": "Ctrl+Shift+L"
            },
            "description": "Enable the extension"
        },
        "disable": {
            "suggested_key": {
                "default": "Ctrl+Shift+K"
            },
            "description": "Disable the extension"
        },
        "cycle": {
            "suggested_key": {
                "default": "Ctrl+Shift+H"
            },
            "description": "Cycle through available display choices"
        }
    }
}