Read Later

Save tabs to read later and automatically sync between browsers.

Read Laterとは何ですか?

Read Laterはhttps://timleland.comによって開発されたChromeの拡張機能で、その主な機能は「Save tabs to read later and automatically sync between browsers.」です。

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

screenshot

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

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

拡張機能の使用方法

                        When you find an article that is worth reading but do not have time, ReadLater allows you to save the tab for another time.

 - Your saved tabs will automatically sync between computers
 - Use the shortcut key (ctrl + shift + S) to save links without opening the extension.
 - Keep your browser fast by limiting the number of open tabs
 - Right on any link to add it to ReadLater
 - Save hundreds of links

More info: https://timleland.com/read-later-extension/
Source Code: https://github.com/timleland/ReadLaterCE                    

拡張機能の基本情報

名前 Read Later Read Later
ID hleifpgbhiladknmecmkpgbgfmlnjhoh
公式URL https://chromewebstore.google.com/detail/read-later/hleifpgbhiladknmecmkpgbgfmlnjhoh
説明 Save tabs to read later and automatically sync between browsers.
ファイルサイズ 2.45 MB
インストール数 3,107
現在のバージョン 1.7.5
最終更新日 2020-11-19
公開日 2020-01-07
評価 3.94/5 合計 17 レビュー
開発者 https://timleland.com
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://timleland.com/read-later-extension/
ヘルプページのURL https://timleland.com/read-later-extension/
プライバシーポリシーページのURL https://t.ly/privacy
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Read Later",
    "homepage_url": "https:\/\/timleland.com\/read-later-extension\/",
    "short_name": "RL",
    "description": "Save tabs to read later and automatically sync between browsers.",
    "permissions": [
        "storage",
        "tabs",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "assets\/js\/jquery.min.js",
            "assets\/js\/jquery.timeago.min.js",
            "assets\/js\/badge.js",
            "assets\/js\/scripts.js",
            "assets\/js\/backgroundScript.js"
        ]
    },
    "version": "1.7.5",
    "browser_action": {
        "default_title": "Read Later",
        "default_icon": "assets\/img\/icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "assets\/img\/icon.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "commands": {
        "save-tab": {
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "mac": "Command+Shift+S"
            },
            "description": "Save Tab"
        }
    }
}