Last Scroll

Shows position after scrolling (by line ↡, or by page ⇓) for better reading continuity.

Last Scroll क्या है?

Last Scroll [email protected] द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Shows position after scrolling (by line ↡, or by page ⇓) for better reading continuity."।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        When scrolling web pages it is often difficult to find the last
previously visible line to keep on reading.

This is most apparent when a scroll has less than a full page to go at the top or bottom of a document.

*Last Scroll* provides a visual hint where to keep on reading, and how we got here.

Click the visual hint to toggle its visibility.                    

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

नाम Last Scroll Last Scroll
ID mceojjfcjklcpbdkagkjhoinaagcidnd
आधिकारिक URL https://chromewebstore.google.com/detail/last-scroll/mceojjfcjklcpbdkagkjhoinaagcidnd
विवरण Shows position after scrolling (by line ↡, or by page ⇓) for better reading continuity.
फ़ाइल का आकार 22.34 KB
स्थापना संख्या 28
वर्तमान संस्करण 10
अंतिम अपडेट 2013-11-30
प्रकाशन तिथि 2013-11-30
रेटिंग 1.00/5 कुल 1 रेटिंग्स
डेवलपर [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/anaran/LastScrollChrome
सहायता पृष्ठ URL https://github.com/anaran/LastScrollChrome/issues
समर्थित भाषाएँ de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extension_name__",
    "version": "10",
    "minimum_chrome_version": "29.0.1521.3",
    "default_locale": "en",
    "description": "__MSG_extension_description__",
    "icons": {
        "48": "lastscroll4_48x48.png",
        "128": "lastscroll4_128x128.png"
    },
    "web_accessible_resources": [
        "lastscroll4_48x48.png",
        "lastscroll4_128x128.png"
    ],
    "permissions": [],
    "background": {
        "scripts": [
            "last_scroll_event_page.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "all_frames": false,
            "matches": [
                ""
            ],
            "js": [
                "last_scroll.js"
            ]
        }
    ]
}