Simplifly
Simplifly is a Chrome extension which allows you to turn any lengthy article into short bite-sized summary
Simpliflyคืออะไร?
Simplifly เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Simplifly Summariser และคุณลักษณะหลักของมันคือ "Simplifly is a Chrome extension which allows you to turn any lengthy article into short bite-sized summary"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Simplifly
ดาวน์โหลดไฟล์ส่วนขยาย Simplifly ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
A Chrome extension to produce summaries of news articles. How it works: 1. Scrape Article heading and body from the current active tab using jQuery. 2. Pre-process the body by removing stop words and stemming words using the Porter-Stemmer algorithm. 3. Produce an array of sentence which will make up nodes in the graph. 4. Produce the graph using TF-IDF values of the sentences and the cosine similarity as the weight between nodes. 5. Run the graph through Google's PageRank algorthim. 6. Choose the highest ranking nodes to produce a summary.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Simplifly |
ID | jioeflccmbeaeelfklklmbdjcbdeccnh |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/simplifly/jioeflccmbeaeelfklklmbdjcbdeccnh |
คำอธิบาย | Simplifly is a Chrome extension which allows you to turn any lengthy article into short bite-sized summary |
ขนาดไฟล์ | 374 KB |
จำนวนการติดตั้ง | 2,135 |
เวอร์ชันปัจจุบัน | 1.0.2 |
อัปเดตครั้งล่าสุด | 2018-09-05 |
วันที่เผยแพร่ | 2018-09-05 |
คะแนน | 3.67/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Simplifly Summariser |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Simplifly is a Chrome extension which allows you to turn any lengthy article into short bite-sized summary", "version": "1.0.2", "name": "Simplifly", "author": "@ishmaelaqsar", "icons": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" }, "options_page": "options.html", "browser_action": { "default_title": "Simplifly", "default_popup": "popup.html", "default_icon": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" } }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "vendor.bundle.js", "content.bundle.js" ], "run_at": "document_end" } ], "permissions": [ "activeTab", "storage" ], "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+F", "mac": "MacCtrl+Shift+F" }, "description": "Opens popup.html" } }, "manifest_version": 2, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |