Read Later

A temporary bookmark focuses on reading later, rather than closing and removing, with several Vim keybindings!

Τι είναι το Read Later;

Το Read Later είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον will.b.chang, και η κύρια λειτουργία του είναι "A temporary bookmark focuses on reading later, rather than closing and removing, with several Vim keybindings!".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Read Later

Λήψη αρχείων επέκτασης Read Later σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Please check https://github.com/willbchang/chrome-read-later#readme for a better document. This page will automatically show up after installation.

Features
• Reading List
  •  Reading Progress: It saves the reading progress of current page.
  •  Sync in Cloud: Sync across Chrome browsers with one google account.
  •  Local History: Save the reading list history locally.
• Status Bar
  •  Row Number : Total Count
  •  History Icon: Click to on/off history mode.
  •  Options Icon: Click to open options page.
  •  Question Icon: Click to open the documentation & feedback page.

Usages

| Mac Keyboard | Windows Keyboard |
|------------------------+--------------------------------|
|       Control       |               Ctrl               |
|       Option        |                Alt                |
|    Command    |         Windows            |
|       Delete        |        Backspace          |


• Mouse Click
  • Current Page:
    •  Right Click current page and select Read Later in context menus to save page info and close current tab.
    •  Right Click a link and select Read Later in context menus to save the target link info.
    •  Click the Read Later icon to open the Reading List(Popup Window).

  • Reading List(Popup Window):
    •  Mouse Hover:                show full title and link.
    •  Mouse Hover(image):  show the delete icon.
    •  Click:                               open link in current tab.
    •  Click(image):                 delete current link.
    •  Alt + Click:         open link in a new tab.
    •  Command + Click:         open link in a new tab and stay in current tab, and keep reading list.

• Keyboard Shortcuts
  • Current Page:
    •  Alt + Shift + S:            Save to reading list.
    •  Alt + Shift + Z:            Zoom In/Out reading list.

If you pressed the shortcuts and it didn't work, please enter chrome://extensions/shortcuts in your address bar.
Find Read Later and set the shortcuts(resolve the keyboard shortcuts conflicts)

  • Reading List(Popup Window):
    •  ↑:                               move to previous link.
    •  ↓:                               move to next link.
    •  Delete:                      delete current link.
    •  Command + z:         restore a deletion.
    •  Enter:                        open select link in current tab.
    •  Alt + Enter:               update link in a new tab.
    •  Command + Enter: open link in a new tab and stay in current tab, and keep reading list.

  • For Vim user(Popup Window):
    •  Esc:     close reading list.
    •  j:           move to next link.
    •  k:          move to previous link.
    •  gg:       move to the first link.
    •  G:         move to the last link.
    •  o:         open select link in current tab.
    •  O:         open link in a new tab and stay in current tab with reading list stay.
    •  dd:       delete current link.
    •  u:          restore a deletion.
    •  yy:        copy current link.
    •  ,:           open option page.
    •  ?:          open documentation & feedback site.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Read Later Read Later
ID fbmfcfkokefgbmfcjahdmomlifclekib
Επίσημο URL https://chromewebstore.google.com/detail/read-later/fbmfcfkokefgbmfcjahdmomlifclekib
Περιγραφή A temporary bookmark focuses on reading later, rather than closing and removing, with several Vim keybindings!
Μέγεθος Αρχείου 96.83 KB
Αριθμός Εγκαταστάσεων 1,749
Τρέχουσα Έκδοση 8.0.0
Τελευταία Ενημέρωση 2022-01-31
Ημερομηνία Δημοσίευσης 2020-07-04
Αξιολόγηση 4.67/5 Συνολικά 9 Αξιολογήσεις
Προγραμματιστής will.b.chang
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/willbchang/chrome-read-later
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/willbchang/chrome-read-later/issues
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "persistent": true,
        "page": "background\/background.html"
    },
    "browser_action": {
        "default_icon": "icons\/logo-orange48x48.png",
        "default_popup": "popup\/popup.html",
        "default_title": "Read Later"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": false
    },
    "web_accessible_resources": [
        "content\/pagePosition.js"
    ],
    "commands": {
        "chrome-read-later.willbc.cn": {
            "description": "Save to reading list",
            "suggested_key": {
                "default": "Alt+Shift+S"
            }
        },
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+Z"
            }
        }
    },
    "description": "A temporary bookmark focuses on reading later, rather than closing and removing, with several Vim keybindings!",
    "icons": {
        "128": "icons\/logo-orange128x128.png",
        "16": "icons\/logo-orange16x16.png",
        "32": "icons\/logo-orange32x32.png",
        "48": "icons\/logo-orange48x48.png"
    },
    "manifest_version": 2,
    "name": "Read Later",
    "permissions": [
        "tabs",
        "storage",
        "contextMenus",
        "chrome:\/\/favicon\/"
    ],
    "version": "8.0.0"
}