Simplifly
Simplifly is a Chrome extension which allows you to turn any lengthy article into short bite-sized summary
Cos'è Simplifly?
Simplifly è un'estensione di Chrome sviluppata da Simplifly Summariser, e la sua funzione principale è "Simplifly is a Chrome extension which allows you to turn any lengthy article into short bite-sized summary".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Simplifly
Scarica i file di estensione Simplifly in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Simplifly |
ID | jioeflccmbeaeelfklklmbdjcbdeccnh |
URL Ufficiale | https://chromewebstore.google.com/detail/simplifly/jioeflccmbeaeelfklklmbdjcbdeccnh |
Descrizione | Simplifly is a Chrome extension which allows you to turn any lengthy article into short bite-sized summary |
Dimensione del File | 374 KB |
Conteggio Installazioni | 2,135 |
Versione Corrente | 1.0.2 |
Ultimo Aggiornamento | 2018-09-05 |
Data di Pubblicazione | 2018-09-05 |
Valutazione | 3.67/5 Totale 3 Valutazioni |
Sviluppatore | Simplifly Summariser |
Tipo di Pagamento | free |
Lingue Supportate | 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'" } |