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
screenshot
screenshot

Forgetbook 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 forgetbookapp@gmail.com

www.forgetbook.com                    

확장 프로그램 기본 정보

이름 Forgetbook Forgetbook
ID apoocpiplcindjpbhaaafbobbjcfgolf
공식 URL 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
이메일 forgetbookapp@gmail.com
결제 유형 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\/*"
    ]
}