Scroll Bookmarker

Save your place on a web page to view again later

What is Scroll Bookmarker?

Scroll Bookmarker is a Chrome extension developed by Owen, and its main feature is "Save your place on a web page to view again later".

Extension Screenshots

screenshot

Download Scroll Bookmarker Extension CRX File

Download Scroll Bookmarker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This chrome extension allows you to save your scroll position on any given website and access that position again at a later date. You may have multiple scroll positions saved on any one web page at a time. The extension allows you to create these scroll markers, cycle through them, and delete them.                    

Extension Basic Information

Name Scroll Bookmarker Scroll Bookmarker
ID plnmmjpilknfapheonmhlapbfkkcaeko
Official URL https://chromewebstore.google.com/detail/scroll-bookmarker/plnmmjpilknfapheonmhlapbfkkcaeko
Description Save your place on a web page to view again later
File Size 1.18 MB
Installation Count 487
Current Version 1.0.0
Last Updated 2018-04-08
Publish Date 2018-04-08
Rating 3.00/5 Total 10 Ratings
Developer Owen
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Scroll Bookmarker",
    "description": "Save your place on a web page to view again later",
    "version": "1.0.0",
    "offline_enabled": true,
    "browser_action": {
        "default_popup": ".\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                ".\/js\/content.min.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}