Forgetbook

Automatically delete all of your posts, likes, and comments from Facebook; without removing any friends or leaving any groups.

什麼是Forgetbook?

Forgetbook是由https://forgetbook.com開發的Chrome擴展程式,該擴展的主要功能是“Automatically delete all of your posts, likes, and comments from Facebook; without removing any friends or leaving any groups.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Forgetbook擴展crx文件

下載Forgetbook擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        You can even choose what to do with your photos, whether you'd like them left as they are, hidden from your timeline, moved to the archive, or moved to the trash.

Want to see Forgetbook in action? We made you a Demo Video!:
https://www.youtube.com/watch?v=M8IIheVMCCI

Forgetbook doesn't save any of your information.  It works entirely inside of your chrome browser, clicking the buttons on your activity log the same way that you do.  We don't even have an external server!  If you'd like to see the code for youself, check it out on github: https://github.com/forgetbookapp/forgetbook  

We hope forgetbook saves you a lot of time.  If you like it you can support the project at paypal.me/forgetbook

Have feedback for us?  Email us your suggestions and questions at [email protected]

www.forgetbook.com                    

擴展基本資訊

名稱 Forgetbook Forgetbook
ID apoocpiplcindjpbhaaafbobbjcfgolf
官方網址 https://chromewebstore.google.com/detail/forgetbook/apoocpiplcindjpbhaaafbobbjcfgolf
簡介 Automatically delete all of your posts, likes, and comments from Facebook; without removing any friends or leaving any groups.
檔案大小 21.79 KB
安裝次數 33
目前版本 0.0.1.5
更新時間 2020-10-11
上架時間 2020-10-01
評分 4.50/5 共 2 次評分
開發者 https://forgetbook.com
電子郵箱 [email protected]
付費類型 free
擴展官網 http://www.forgetbook.com
說明頁面URL http://www.forgetbook.com
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Forgetbook",
    "short_name": "forgetbook",
    "version": "0.0.1.5",
    "description": "Automatically delete all of your posts, likes, and comments from Facebook; without removing any friends or leaving any groups.",
    "offline_enabled": false,
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "96": "images\/icon96.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.facebook.com\/*"
            ],
            "js": [
                "content.js",
                "terminator.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "page_action": {
        "default_title": "Forgetbook",
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "96": "images\/icon96.png",
            "128": "images\/icon128.png"
        },
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "*:\/\/*.facebook.com\/*"
    ]
}