Last Scroll

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

Qu'est-ce que Last Scroll ?

Last Scroll est une extension Chrome développée par [email protected], et sa fonction principale est "Shows position after scrolling (by line ↡, or by page ⇓) for better reading continuity.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Last Scroll

Téléchargez les fichiers d'extension Last Scroll au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Last Scroll Last Scroll
ID mceojjfcjklcpbdkagkjhoinaagcidnd
URL Officiel https://chromewebstore.google.com/detail/last-scroll/mceojjfcjklcpbdkagkjhoinaagcidnd
Description Shows position after scrolling (by line ↡, or by page ⇓) for better reading continuity.
Taille du Fichier 22.34 KB
Nombre d'Installations 28
Version Actuelle 10
Dernière Mise à Jour 2013-11-30
Date de Publication 2013-11-30
Évaluation 1.00/5 Total 1 Évaluations
Développeur [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/anaran/LastScrollChrome
URL de la Page d'Aide https://github.com/anaran/LastScrollChrome/issues
Langues Prises en Charge 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"
            ]
        }
    ]
}