Instapaper

Instapaper browser extension to save links for offline reading.

什麼是Instapaper?

Instapaper是由https://www.instapaper.com開發的Chrome擴展程式,該擴展的主要功能是“Instapaper browser extension to save links for offline reading.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Instapaper擴展crx文件

下載Instapaper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Instapaper is a simple tool for saving web pages to read later on your iPhone, iPad, Android, computer, or Kindle.

This browser extension may be used in place of the bookmarklet to save articles directly into your Instapaper queue. 

It works by saving the current tab to your Instapaper account . Users who aren't logged in will be taken to a login or signup page, after completing the process they will be redirected back to the original page with the original page saved in their queue.                    

擴展基本資訊

名稱 Instapaper Instapaper
ID ldjkgaaoikpmhmkelcgkgacicjfbofhh
官方網址 https://chromewebstore.google.com/detail/instapaper/ldjkgaaoikpmhmkelcgkgacicjfbofhh
簡介 Instapaper browser extension to save links for offline reading.
檔案大小 65.03 KB
安裝次數 262,237
目前版本 2.2.1
更新時間 2023-08-17
上架時間 2020-04-16
評分 3.77/5 共 517 次評分
開發者 https://www.instapaper.com
電子郵箱 [email protected]
付費類型 free
擴展官網 http://www.instapaper.com
說明頁面URL https://instapaper.zendesk.com
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Instapaper",
    "description": "Instapaper browser extension to save links for offline reading.",
    "version": "2.2.1",
    "options_page": "options.html",
    "icons": {
        "16": "insta_logo_tiny.png",
        "48": "insta_logo_small.png",
        "128": "insta_logo.png"
    },
    "commands": {
        "ctrl-shift-s": {
            "suggested_key": {
                "default": "Ctrl+Shift+S"
            },
            "description": "Save article keyboard shortcut"
        }
    },
    "permissions": [
        "storage",
        "activeTab",
        "contextMenus"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "service_worker": "readlater.js",
        "type": "module"
    },
    "action": {
        "default_icon": "insta_default_action.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "bookmarklet.js",
                "deflate-base64-min.js",
                "highlight_ugly.js"
            ],
            "css": [
                "instapaper.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "http:\/\/twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "twitter.js"
            ]
        },
        {
            "matches": [
                "http:\/\/www.reddit.com\/*"
            ],
            "js": [
                "reddit.js"
            ]
        },
        {
            "matches": [
                "https:\/\/news.ycombinator.com\/*"
            ],
            "js": [
                "hackernews.js"
            ]
        },
        {
            "matches": [
                "http:\/\/www.usv.com\/",
                "https:\/\/www.usv.com\/"
            ],
            "js": [
                "usv.js"
            ],
            "css": [
                "usv.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*.png"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}