Export saved links

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

What is Export saved links?

Export saved links is a Chrome extension developed by https://cod3.net, and its main feature is "Export saved links from FB (the social network wink wink)".

Extension Screenshots

screenshot

Download Export saved links Extension CRX File

Download Export saved links extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Export saved links Export saved links
ID ecpknffljbjgdccapjaflmpfoclakjcg
Official URL https://chromewebstore.google.com/detail/export-saved-links/ecpknffljbjgdccapjaflmpfoclakjcg
Description Export saved links from FB (the social network wink wink)
File Size 133 KB
Installation Count 398
Current Version 0.0.9
Last Updated 2022-04-04
Publish Date 2019-07-18
Rating 4.90/5 Total 10 Ratings
Developer https://cod3.net
Email [email protected]
Payment Type free
Extension Website https://medium.com/cod3/how-to-export-your-facebook-saved-links-to-pocket-c34828dd5f8e
Supported Languages 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"
            ]
        }
    ]
}