Export saved links
Export saved links from FB (the social network wink wink)
Qu'est-ce que Export saved links ?
Export saved links est une extension Chrome développée par https://cod3.net, et sa fonction principale est "Export saved links from FB (the social network wink wink)".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Export saved links
Téléchargez les fichiers d'extension Export saved links au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Export saved links |
ID | ecpknffljbjgdccapjaflmpfoclakjcg |
URL Officiel | https://chromewebstore.google.com/detail/export-saved-links/ecpknffljbjgdccapjaflmpfoclakjcg |
Description | Export saved links from FB (the social network wink wink) |
Taille du Fichier | 133 KB |
Nombre d'Installations | 398 |
Version Actuelle | 0.0.9 |
Dernière Mise à Jour | 2022-04-04 |
Date de Publication | 2019-07-18 |
Évaluation | 4.90/5 Total 10 Évaluations |
Développeur | https://cod3.net |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://medium.com/cod3/how-to-export-your-facebook-saved-links-to-pocket-c34828dd5f8e |
Langues Prises en Charge | 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" ] } ] } |