Simplifly
Simplifly is a Chrome extension which allows you to turn any lengthy article into short bite-sized summary
Simplifly क्या है?
Simplifly Simplifly Summariser द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Simplifly is a Chrome extension which allows you to turn any lengthy article into short bite-sized summary"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Simplifly एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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'" } |