Export saved links

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

什么是Export saved links?

Export saved links是由https://cod3.net开发的Chrome扩展程序,该扩展的主要功能是“Export saved links from FB (the social network wink wink)”。

扩展截图

screenshot

下载Export saved links扩展crx文件

下载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"
            ]
        }
    ]
}