Shorter.

This Extension allows you to select text from any web-page and returns a shortened version of it.

Τι είναι το Shorter.;

Το Shorter. είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον shiredude95, και η κύρια λειτουργία του είναι "This Extension allows you to select text from any web-page and returns a shortened version of it.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Shorter.

Λήψη αρχείων επέκτασης Shorter. σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        ******************WHATS NEW***************************
Beta release of direct summary from a page URL.
Currently full support only for wikipedia.
Other URLs may or may not behave as expected.
********************************************************

What is Shorter.?

Shorter. is a chrome extension that allows you to select text from any web-page and returns a shortened version of it.

What do you mean shortened?

Shorter. takes your selected text, processes it and finds the most important parts of input that gives you an overall idea of the selection without having to read the entire selection.

How do I use this?

Select the text you want (normally more than 2 lines) and right click to get the menu.Click on Make It Shorter to view the summary. The current Beta release also supports page wide summary,where you do not need to select any pages, copy the url,click on the extension logo and paste it into
the text box. Press Go and enjoy your summary.


Can I control the size of my summary?


You sure can! Click on the options menu from the extension and select either Normal or Small summary.
Normal summary reduces upto 40% of the text and small summaries reduce upto 60% of the text. You can also 
choose the option to lemmatize the text, this can possibly result in better summaries with the tradeoff being
slightly longer time to summarize. The default is Normal size summary and no lemmatization.

How does this work?

Shorter. takes your selected text and ranks each sentence in the text according to its relevance in the selection. It employs the TF-IDF principle to score each sentence with respect to words present in it and their importance in relation to the selection. Using a two pass method to first find out the Top-N sentences in the first pass followed by finding out the highest scoring sentence in every N-th bracket ensures the context as well as scores are factored in while summarizing..                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Shorter. Shorter.
ID icedmmjfgjobbdmomfcojnimjanoeakm
Επίσημο URL https://chrome.google.com/webstore/detail/shorter/icedmmjfgjobbdmomfcojnimjanoeakm
Περιγραφή This Extension allows you to select text from any web-page and returns a shortened version of it.
Μέγεθος Αρχείου 14.74 KB
Αριθμός Εγκαταστάσεων 281
Τρέχουσα Έκδοση 0.2.4.1
Τελευταία Ενημέρωση 2018-01-26
Ημερομηνία Δημοσίευσης 2018-01-26
Αξιολόγηση 3.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής shiredude95
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.makeitshorter.net
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Shorter.",
    "options_page": "options.html",
    "description": "This Extension allows you to select text from any web-page and returns a shortened version of it.",
    "version": "0.2.4.1",
    "permissions": [
        "contextMenus",
        "tabs",
        "storage",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "file:\/\/\/.*\/.*",
        "file:\/\/\/.*\/.*\/.*",
        "file:\/\/\/.*\/.*\/.*\/.*",
        "file:\/\/\/.*\/.*\/.*\/.*\/.*",
        "file:\/\/\/.*\/.*\/.*\/.*\/.*\/.*",
        "file:\/\/\/.*\/.*\/.*\/.*\/.*\/.*\/.*"
    ],
    "browser_action": {
        "default_icon": "icon48.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "48": "icon48.png"
    },
    "background": {
        "scripts": [
            "event.js"
        ]
    }
}