Sentence Segmenter

This extension will make your text easily readable by separating sentences based on periods.

Sentence Segmenter क्या है?

Sentence Segmenter sentencesegmentationnlp द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension will make your text easily readable by separating sentences based on periods."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Sentence Segmenter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This extension can help make text easier to read by putting each sentence of a webpage on a new line (separated based on periods).

You can activate the segmentation by clicking on the top-right icon.

Github:
https://github.com/AhmadHassanAwan/Sentence-Segmentation

If you need to reread, it can be faster to find the beginning of sentences that all start on the left.

Sentence structure can also become clearer.

If you’re skimming, you can abandon a sentence, and quickly find another sentence.

---

**Additional notes**

Segmenting a page is like creating a snapshot.
Certain elements can't be clicked on and expanded anymore, like comment threads. 
Expand first if necessary, and then segment.

You can refresh the page to turn off the segmentation effect.

Spacing between sentences is similar to the Microsoft Word setting:
Microsoft Word -> Home -> Paragraph -> Indents and Spacing -> Spacing -> 
Line spacing single 
Before After 6 pt

To create a shortcut that activates the sentence segmenter, go to the extensions page (chrome://extensions/), and click on Keyboard Shortcuts at the bottom.

---

**Period double-space option**

In addition to replacing "period" "space" with "period" "new-line", you can replace with "period""space""space".

Right-click the icon, and go to "options".

An eye-tracking study found that text was easier to read when periods were followed by two spaces.

https://www.reddit.com/r/science/comments/8fl3p7/an_eyetracking_study_found_that_text_was_easier/

> Although comprehension was not affected by punctuation spacing, the eye movement record suggested that initial processing of the text was facilitated when periods were followed by two spaces, supporting the change made to the APA Manual.

https://link.springer.com/article/10.3758%2Fs13414-018-1527-6                    

एक्सटेंशन की मूल जानकारी

नाम Sentence Segmenter Sentence Segmenter
ID jfbhkblbhhigbgdnijncccdndhbflcha
आधिकारिक URL https://chromewebstore.google.com/detail/sentence-segmenter/jfbhkblbhhigbgdnijncccdndhbflcha
विवरण This extension will make your text easily readable by separating sentences based on periods.
फ़ाइल का आकार 38.34 KB
स्थापना संख्या 405
वर्तमान संस्करण 1.6.8
अंतिम अपडेट 2022-11-04
प्रकाशन तिथि 2018-10-02
रेटिंग 4.13/5 कुल 8 रेटिंग्स
डेवलपर sentencesegmentationnlp
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Sentence Segmenter",
    "short_name": "Sentence Segmenter",
    "version": "1.6.8",
    "manifest_version": 3,
    "description": "This extension will make your text easily readable by separating sentences based on periods.",
    "icons": {
        "128": "images\/icon-128.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "default_locale": "en",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/script.js",
                "scripts\/contentscript.js"
            ],
            "css": [
                "styles\/main.css"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "action": {
        "default_title": "Sentence Segmentation"
    }
}