Explain to Chrome

Article shortener using ExplainToMe

Explain to Chromeคืออะไร?

Explain to Chrome เป็นส่วนขยายของ Chrome ที่พัฒนาโดย oelmekki และคุณลักษณะหลักของมันคือ "Article shortener using ExplainToMe"

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

screenshot

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

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

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

                        ExplainToMe[1] is a service using the TextRank algorithm to summarize web articles.

This chrome extension allows to use it from any page. This is especially useful on websites containing tons of links to articles, like twitter or facebook.


Usage:

Go to a website where you want to summarize links from, like twitter. Click the extension button and activate Explain to Chrome for this domain. Hovering links will now trigger summary.

If you prefer, you can configure the extension so that summary is triggered on right click, via its context menu item.


A note about permissions:

I know the permissions requested are quite extensive, sorry about that. ExplainToMe does not check for redirection, which means the extension has to: if you want to summarize a bit.ly link, I have to fetch the link to see if it redirects to somewhere else, follow it, then check if it redirects somewhere else, etc. For that reason, the extension must be able to fetch any url.

If you're not comfortable with that, you can review sources at https://github.com/oelmekki/explain-to-chrome , then install from sources.

[1] https://explaintome.herokuapp.com/                    

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

ชื่อ Explain to Chrome Explain to Chrome
ID lmefmgnhjlfmcbknkemepkogmenhknae
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/explain-to-chrome/lmefmgnhjlfmcbknkemepkogmenhknae
คำอธิบาย Article shortener using ExplainToMe
ขนาดไฟล์ 25.87 KB
จำนวนการติดตั้ง 12
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2016-09-05
วันที่เผยแพร่ 2016-09-05
คะแนน 1.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา oelmekki
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Explain to Chrome",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Article shortener using ExplainToMe",
    "background": {
        "persistent": false,
        "scripts": [
            "background\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "38": "logo.png"
        },
        "default_popup": "browser_action\/main.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content_script\/explainer.js",
                "content_script\/popup.js",
                "content_script\/positioner.js",
                "content_script\/intent_loader.js",
                "content_script\/utils.js",
                "content_script\/main.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "activeTab",
        "storage",
        "contextMenus"
    ],
    "icons": {
        "16": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    }
}