Instapaper

Instapaper browser extension to save links for offline reading.

Instapaperคืออะไร?

Instapaper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.instapaper.com และคุณลักษณะหลักของมันคือ "Instapaper browser extension to save links for offline reading."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Instapaper

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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:\/\/*\/*"
            ]
        }
    ]
}