Scroll Bookmarker

Save your place on a web page to view again later

Scroll Bookmarkerとは何ですか?

Scroll BookmarkerはOwenによって開発されたChromeの拡張機能で、その主な機能は「Save your place on a web page to view again later」です。

拡張機能のスクリーンショット

screenshot

Scroll Bookmarker拡張機能のCRXファイルをダウンロード

Scroll Bookmarker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Scroll Bookmarker Scroll Bookmarker
ID plnmmjpilknfapheonmhlapbfkkcaeko
公式URL https://chromewebstore.google.com/detail/scroll-bookmarker/plnmmjpilknfapheonmhlapbfkkcaeko
説明 Save your place on a web page to view again later
ファイルサイズ 1.18 MB
インストール数 487
現在のバージョン 1.0.0
最終更新日 2018-04-08
公開日 2018-04-08
評価 3.00/5 合計 10 レビュー
開発者 Owen
Eメール [email protected]
支払い方法 free
対応言語 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'"
}