Save to GoodLinks

Save links to GoodLinks app.

Save to GoodLinksคืออะไร?

Save to GoodLinks เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://goodlinks.app และคุณลักษณะหลักของมันคือ "Save links to GoodLinks app."

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

screenshot
screenshot
screenshot

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

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

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

                        * GoodLinks app for iOS or macOS is required to enable this extension.

* This extension will stop working if Advanced Data Protection is enabled on your iCloud account. If you have Advanced Data Protection enabled, we recommend using the Share extension (https://goodlinks.app/help/how-to-save/).

Use GoodLinks browser extension to save links to GoodLinks app.

After installed, click the GoodLinks button to sign in with your Apple ID (please make sure that you select the "Keep me signed in" option when sign in). The extension runs completely client side, communicates only with Apple's iCloud to save your links. It does not collect or pass anything through any other servers.

Default keyboard shortcut for the extension are Command+Shift+S (Mac), Ctrl+Shift+S (Windows). You can change it in the Chrome Settings for Extensions.                    

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

ชื่อ Save to GoodLinks Save to GoodLinks
ID jgemokhiblmkgicejlcpkoaohfpcgehj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/save-to-goodlinks/jgemokhiblmkgicejlcpkoaohfpcgehj
คำอธิบาย Save links to GoodLinks app.
ขนาดไฟล์ 296 KB
จำนวนการติดตั้ง 2,937
เวอร์ชันปัจจุบัน 1.0.7
อัปเดตครั้งล่าสุด 2024-02-01
วันที่เผยแพร่ 2021-11-24
คะแนน 3.94/5 รวมทั้งหมด 17 คะแนน
ผู้พัฒนา https://goodlinks.app
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://goodlinks.app/
URL หน้านโยบายความเป็นส่วนตัว https://goodlinks.app/privacy
ภาษาที่รองรับ en,sk
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "default_locale": "en",
    "name": "__MSG_extension_name__",
    "short_name": "GoodLinks",
    "description": "__MSG_extension_description__",
    "version": "1.0.7",
    "homepage_url": "https:\/\/goodlinks.app",
    "author": "Ngoc Luu",
    "icons": {
        "48": "images\/icon-48.png",
        "64": "images\/icon-64.png",
        "96": "images\/icon-96.png",
        "128": "images\/icon-128.png",
        "256": "images\/icon-256.png",
        "512": "images\/icon-512.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "action": {
        "default_icon": {
            "16": "images\/toolbar-icon-disabled-16.png",
            "19": "images\/toolbar-icon-disabled-19.png",
            "32": "images\/toolbar-icon-disabled-32.png",
            "38": "images\/toolbar-icon-disabled-38.png"
        },
        "default_title": "__MSG_extension_name__"
    },
    "commands": {
        "save": {
            "suggested_key": {
                "default": "Ctrl+Shift+S"
            },
            "description": "__MSG_extension_description__"
        }
    },
    "permissions": [
        "contextMenus",
        "storage",
        "activeTab"
    ]
}