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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically delete all of your posts, likes, and comments from Facebook; without removing any friends or leaving any groups."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Forgetbook एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 [email protected]

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
ईमेल [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\/*"
    ]
}