CheckPoint

Save any part of a page any moment in time.

CheckPointとは何ですか?

CheckPointはSep Devによって開発されたChromeの拡張機能で、その主な機能は「Save any part of a page any moment in time.」です。

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

screenshot

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

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

拡張機能の使用方法

                        Disclaimer: this application is in beta mode. It is still in development. All functionality should work but more and more features are coming!

Checkpoint is a more elaborate way of saving a website or tab in chrome, like a bookmark.  

If you find some recipe, or some piece of code somewhere that you want to save, a bookmark can save the webpage, but not the exact piece of text where you found it, or how far you scrolled, or what text you selected. Checkpoint can do that for you!

It saves multiple elements of the current tab to make a checkpoint of where you are, to be able to find where you left off very quickly. Here's what it saves:
- URL
- Titlte
- Text selection
- Time
- Element of the webpage that you're in
- How far you scrolled

When you open a checkpoint that you created earlier, the webpage is opened, scrolls down & marks the element of the selection that you made when creating the checkpoint.

You can also copy & paste checkpoints directly from your right-click menu!

New features:
- Add quick notes in the extension
- Give feedback
- New interface!
- Save Checkpoints from the right click menu.
- Paste selections from the right click menu.
- Paste all from the right click menu                    

拡張機能の基本情報

名前 CheckPoint CheckPoint
ID ioghepelnhpfiamjlgbcakmjmlnmmbcc
公式URL https://chromewebstore.google.com/detail/checkpoint/ioghepelnhpfiamjlgbcakmjmlnmmbcc
説明 Save any part of a page any moment in time.
ファイルサイズ 378 KB
インストール数 139
現在のバージョン 0.56
最終更新日 2022-10-19
公開日 2021-11-18
開発者 Sep Dev
Eメール [email protected]
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CheckPoint",
    "description": "Save any part of a page any moment in time.",
    "version": "0.56",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "128": "checkpoint_128.png"
    },
    "permissions": [
        "storage",
        "scripting",
        "tabs",
        "notifications",
        "contextMenus"
    ],
    "host_permissions": [
        "http:\/\/www.blogger.com\/",
        "http:\/\/*.google.com\/",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "commands": {
        "save_checkpoint": {
            "suggested_key": {
                "windows": "Ctrl+Shift+Y",
                "mac": "Ctrl+Shift+Y",
                "chromeos": "Ctrl+Shift+Y",
                "linux": "Ctrl+Shift+Y"
            },
            "description": "Save checkpoint"
        },
        "save_checkpoint_alt": {
            "suggested_key": {
                "windows": "Alt+Shift+Y",
                "mac": "Alt+Shift+Y",
                "chromeos": "Alt+Shift+Y",
                "linux": "Alt+Shift+Y"
            },
            "description": "Save checkpoint"
        }
    }
}