Export saved links

Export saved links from FB (the social network wink wink)

Export saved linksคืออะไร?

Export saved links เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://cod3.net และคุณลักษณะหลักของมันคือ "Export saved links from FB (the social network wink wink)"

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

screenshot

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

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

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

                        I find a lot of useful content on Facebook and their Save button is very convenient for reading links later. Use this extension to export your links to a list of URLs separated by spaces. 

Use it in combination with "Links to Bookmarks" to save them to your browser's bookmarks or "Batch Save Pocket" to export your links to your Pocket reading list.                    

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

ชื่อ Export saved links Export saved links
ID ecpknffljbjgdccapjaflmpfoclakjcg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/export-saved-links/ecpknffljbjgdccapjaflmpfoclakjcg
คำอธิบาย Export saved links from FB (the social network wink wink)
ขนาดไฟล์ 133 KB
จำนวนการติดตั้ง 398
เวอร์ชันปัจจุบัน 0.0.9
อัปเดตครั้งล่าสุด 2022-04-04
วันที่เผยแพร่ 2019-07-18
คะแนน 4.90/5 รวมทั้งหมด 10 คะแนน
ผู้พัฒนา https://cod3.net
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://medium.com/cod3/how-to-export-your-facebook-saved-links-to-pocket-c34828dd5f8e
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Export saved links",
    "version": "0.0.9",
    "manifest_version": 2,
    "description": "Export saved links from FB (the social network wink wink)",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "Export saved links",
        "default_popup": "src\/page_action\/page_action.html"
    },
    "permissions": [
        "clipboardWrite",
        "https:\/\/*.facebook.com\/saved*",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.facebook.com\/saved*"
            ],
            "js": [
                "src\/lib\/findlinks.js",
                "src\/inject\/inject.js"
            ]
        }
    ]
}