FB Pix Downloader

Gets all ya tagged pix from FB

FB Pix Downloaderとは何ですか?

FB Pix DownloaderはRob Clouthによって開発されたChromeの拡張機能で、その主な機能は「Gets all ya tagged pix from FB」です。

拡張機能のスクリーンショット

screenshot

FB Pix Downloader拡張機能のCRXファイルをダウンロード

FB Pix Downloader拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Now that people are starting to flee Facebook, FB Pix Downloader helps you to get all your tagged pics of FB. Because you're not the owner of these pictures, it's a bit laborious to manually download them. This extension automates a lot of the process.

Usage:
1. Install the extension. 
2. Make sure you're using the new Facebook design
3. Go to your Facebook profile photos, select the "Photos of You" tab and scroll all the way to the bottom so that all the thumbnails have loaded
4. Click on the FB Pix Downloader extension icon in the top right of the browser window.
5. The pictures will all download into a subfolder of your downloads folder called "Facebook Photos"

Note: the photos are only properly timestamped from 2012 or so, when Facebook started timestamping the image files. I'm too lazy to figure out how to parse the uploaded date from the Facebook HTML for the early photos. But at least they're in order.                    

拡張機能の基本情報

名前 FB Pix Downloader FB Pix Downloader
ID eiboklegfgbapjhnehmnngihpmjalflh
公式URL https://chrome.google.com/webstore/detail/fb-pix-downloader/eiboklegfgbapjhnehmnngihpmjalflh
説明 Gets all ya tagged pix from FB
ファイルサイズ 550 KB
インストール数 943
現在のバージョン 1.0
最終更新日 2020-12-15
公開日 2020-12-15
評価 4.83/5 合計 12 レビュー
開発者 Rob Clouth
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/robclouth/Facebook-Pix-Downloader
ヘルプページのURL https://github.com/robclouth/Facebook-Pix-Downloader
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "FB Pix Downloader",
    "description": "Gets all ya tagged pix from FB",
    "version": "1.0",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "background": {
        "scripts": [
            "fecha.min.js",
            "piexif.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "FB Pix Downloader"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/www.facebook.com\/*"
            ]
        }
    ],
    "permissions": [
        "downloads",
        "https:\/\/*.facebook.com\/*"
    ],
    "manifest_version": 2
}