Send to Kindle for Google Chrome™

Sending and reading web content such as news articles and blog posts to your Kindle device or reading app is now easier than ever.

Send to Kindle for Google Chrome™คืออะไร?

Send to Kindle for Google Chrome™ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย AMZN Mobile LLC และคุณลักษณะหลักของมันคือ "Sending and reading web content such as news articles and blog posts to your Kindle device or reading app is now easier than ever."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Send to Kindle for Google Chrome™

ดาวน์โหลดไฟล์ส่วนขยาย Send to Kindle for Google Chrome™ ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        [Official Amazon.com extension.]

Send to Kindle for Google Chrome makes it easier to read web content with Kindle. Send articles, blog posts, and more to your Kindle. Read anytime, anywhere on a Kindle E-reader or with the Kindle app.

You can 
Use quick send to instantly send full pages to your library.
Preview how content will appear on Kindle. 
Select text and send just the selection to your Kindle. 
Edit the title and author of your document before sending. 
Add content to your library on all devices or send only to specific devices.

Learn more about Send to Kindle at https://www.amazon.com/sendtokindle.

----------------
For customers located within the European Union, United Kingdom, or Brazil: By downloading or using Send to Kindle, you agree to the terms applicable for your country or territory located at http://www.amazon.com/sendtokindleterms.  Please also see the applicable Privacy Notice, Cookies Notice, and Interest-Based Ads Notice for your country; links to these notices can be found in the footer of your local Amazon homepage. 

For all other customers: By downloading or using Send to Kindle, you agree to the terms applicable for your country or territory located at http://www.amazon.com/sendtokindleterms.  You also agree to the applicable Privacy Notice (e.g. http://www.amazon.com/privacy) for your country; the link to your applicable Privacy Notice can be found in the footer of your local Amazon homepage. 

----------------
Note: Send to Kindle for Google Chrome may not work properly in the Chrome Web Store or other sites that prevent its use. The extension may also not work properly if you have extensions that block the use of JavaScript running. If you continue to experience problems, please submit your feedback to [email protected].

----------------
Changes in version 2.1.1.7 – Jan 2024
  • Bug fixes.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Send to Kindle for Google Chrome™ Send to Kindle for Google Chrome™
ID cgdjpilhipecahhcilnafpblkieebhea
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/send-to-kindle-for-google/cgdjpilhipecahhcilnafpblkieebhea
คำอธิบาย Sending and reading web content such as news articles and blog posts to your Kindle device or reading app is now easier than ever.
ขนาดไฟล์ 3.03 MB
จำนวนการติดตั้ง 574,516
เวอร์ชันปัจจุบัน 2.1.1.7
อัปเดตครั้งล่าสุด 2024-01-09
วันที่เผยแพร่ 2015-09-17
คะแนน 3.28/5 รวมทั้งหมด 1028 คะแนน
ผู้พัฒนา AMZN Mobile LLC
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://www.amazon.com/sendtokindle/chrome?ref=stk_gch_store
URL หน้าช่วยเหลือ http://www.amazon.com/help/sendtokindle/chrome?ref=stk_gch_store
URL หน้านโยบายความเป็นส่วนตัว http://www.amazon.com/privacy
ภาษาที่รองรับ de,en,en-GB,en-US,fr,nl,tr,da,es,it,pl,pt-BR,pt-PT,sv,cs,iw,mr,hi,bn,ta,te,kn-IN,ml,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extensionName__",
    "version": "2.1.1.7",
    "description": "__MSG_extensionDescription__",
    "default_locale": "en",
    "incognito": "split",
    "background": {
        "service_worker": "s2k-worker.js"
    },
    "icons": {
        "16": "icon\/s2k-icon-16.png",
        "32": "icon\/s2k-icon-32.png",
        "48": "icon\/s2k-icon-48.png",
        "64": "icon\/s2k-icon-64.png",
        "128": "icon\/s2k-icon-128.png",
        "256": "icon\/s2k-icon-256.png"
    },
    "action": {
        "default_icon": "icon\/s2k-icon-32.png",
        "default_title": "Send to Kindle",
        "default_popup": "send-to-kindle-popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/send-to-kindle-preview.html*"
            ],
            "js": [
                "s2k-content.js"
            ]
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "s2k-listener.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*",
                "fonts\/*",
                "icons\/*",
                "send-to-kindle-history.html",
                "send-to-kindle-preview.html",
                "send-to-kindle-afterSignIn.html"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "unlimitedStorage",
        "alarms",
        "scripting",
        "webNavigation"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ]
}