Scroll Marker

Visual aid for scrolling web pages.

Scroll Marker क्या है?

Scroll Marker arkham.development द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Visual aid for scrolling web pages."।

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

screenshot

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

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

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

                        Adds a customizable line ("Marker") to the bottom of web pages which helps users visually keep their place when the page is scrolled.  

After the page scrolls, the Marker will move up with the page, and remain in place for a moment to help the user keep track of where they left off.  After a set period of time, the Marker will redraw again near the bottom of the freshly scrolled web page, awaiting the next scroll.

The Marker color, opacity, width and distance from the bottom of the web page can be changed by the user.  Also, the delay after scrolling before the Marker redraws itself is also configurable.

Scroll Marker does not set cookies, track users or webpages, and does not communicate or exchange data with anyone.  It simply uses basic JavaScript to temporarily insert and manipulate its "marker" object in web pages after they load.  The only information it reads are the size and scrolling dimensions of Chrome's browser windows.                    

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

नाम Scroll Marker Scroll Marker
ID jdoinodpdahlmpgmpmhonheidpjhhnid
आधिकारिक URL https://chrome.google.com/webstore/detail/scroll-marker/jdoinodpdahlmpgmpmhonheidpjhhnid
विवरण Visual aid for scrolling web pages.
फ़ाइल का आकार 308 KB
स्थापना संख्या 3,406
वर्तमान संस्करण 0.97
अंतिम अपडेट 2013-01-07
प्रकाशन तिथि 2013-01-07
रेटिंग 3.48/5 कुल 31 रेटिंग्स
डेवलपर arkham.development
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Scroll Marker",
    "version": "0.97",
    "manifest_version": 2,
    "description": "Visual aid for scrolling web pages.",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/jquery-1.8.1.js",
                "js\/marker.js",
                "js\/jquery.ba-dotimeout.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "images\/icon_128.png"
    },
    "icons": {
        "16": "images\/icon_16.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    }
}