Scroll Bookmarker

Save your place on a web page to view again later

Wat is Scroll Bookmarker?

Scroll Bookmarker is een Chrome-extensie ontwikkeld door Owen, en de belangrijkste functie is "Save your place on a web page to view again later".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Scroll Bookmarker

Download Scroll Bookmarker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Scroll Bookmarker Scroll Bookmarker
ID plnmmjpilknfapheonmhlapbfkkcaeko
Officiële URL https://chromewebstore.google.com/detail/scroll-bookmarker/plnmmjpilknfapheonmhlapbfkkcaeko
Beschrijving Save your place on a web page to view again later
Bestandsgrootte 1.18 MB
Aantal Installaties 487
Huidige Versie 1.0.0
Laatst Bijgewerkt 2018-04-08
Publicatiedatum 2018-04-08
Beoordeling 3.00/5 Totaal 10 Beoordelingen
Ontwikkelaar Owen
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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'"
}