Backstory: Remember Your Facebook Friends!

Finally, a contact manager for Facebook.

Backstory: Remember Your Facebook Friends!란 무엇입니까?

Backstory: Remember Your Facebook Friends!은(는) https://trybackstory.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Finally, a contact manager for Facebook."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Backstory: Remember Your Facebook Friends! 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        NEW: Now supports New Facebook in both Light and Dark Mode!

★ Add private labels and notes in Facebook profiles.
★ Copy notes in from public info.
★ Search through your notes, e.g. to find all friends tagged with a certain place.
★ Sync and back up across multiple devices.
★ Free, lightweight personal CRM for Facebook.

Featured on Product Hunt! https://www.producthunt.com/posts/backstory-for-facebook

Q: Will my friends know what I write about them?

A: No! Only you can see the labels and notes you've written.

Q: Where are my notes stored?

A: For your privacy and security, your data is stored offline on your own computer by default. If you choose to create an online backup, your data is backed up to our servers so you can sync it across multiple devices.

Q: What does syncing do?

Syncing keeps your notes up-to-date between multiple devices. Changes on one device will be sent to all other devices signed in to the same backup. You can also transfer your notes to a new device by signing in to your backup on it.

Q: Do you collect data on my friends or my Facebook activity?

A: We do not store any information besides your notes, labels, and friends' names. 

Q: It says that you can "read and change my data on www.facebook.com". What gives?

A: We need to detect whose Facebook profile you are viewing and load their corresponding labels and notes. Hence, this is a Chrome permission allowing us to do that.

Privacy Policy: http://www.trybackstory.com/privacy.html                    

확장 프로그램 기본 정보

이름 Backstory: Remember Your Facebook Friends! Backstory: Remember Your Facebook Friends!
ID hlabkdeeoecamlejpjgaedopbpflfhjm
공식 URL https://chromewebstore.google.com/detail/backstory-remember-your-f/hlabkdeeoecamlejpjgaedopbpflfhjm
설명 Finally, a contact manager for Facebook.
파일 크기 589 KB
설치 횟수 667
현재 버전 1.1.0.4
최근 업데이트 2023-02-02
출시 날짜 2020-01-09
평점 4.18/5 총 11 개의 평점
개발자 https://trybackstory.com
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL http://www.trybackstory.com/privacy.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Backstory: Remember Your Facebook Friends!",
    "short_name": "Backstory",
    "description": "Finally, a contact manager for Facebook.",
    "version": "1.1.0.4",
    "offline_enabled": true,
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "assets\/icon16.png",
            "24": "assets\/icon24.png",
            "32": "assets\/icon32.png"
        },
        "default_title": "[Backstory] Search or manage sync",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.facebook.com\/*"
            ],
            "css": [
                "lib\/fontawesome.css",
                "styles.css"
            ],
            "js": [
                "lib\/jquery-3.1.1.min.js",
                "lib\/react.production.min.js",
                "lib\/react-dom.production.min.js",
                "lib\/sentry-5.22.3.min.js",
                "constants.js",
                "reporting.js",
                "generated\/components\/ErrorBoundary.js",
                "generated\/components\/Note.js",
                "generated\/components\/NoteContainer.js",
                "generated\/components\/Tag.js",
                "generated\/components\/TagContainer.js",
                "generated\/components\/FbTimelineUnit.js",
                "generated\/components\/CopyIntroButton.js",
                "generated\/facebook_insert.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "lib\/pouchdb-7.0.0.min.js",
            "lib\/pouchdb.authentication-1.1.3.min.js",
            "lib\/pouchdb.find.min.js",
            "lib\/pouchdb.quick-search-1.2.0.min.js",
            "lib\/pouchdb.upsert-2.2.0.min.js",
            "lib\/sentry-5.22.3.min.js",
            "constants.js",
            "reporting.js",
            "background.js"
        ]
    },
    "permissions": [
        "storage",
        "*:\/\/*.facebook.com\/*",
        "*:\/\/*.trybackstory.com\/*",
        "cookies"
    ],
    "web_accessible_resources": [
        "webfonts\/*",
        "assets\/icon24-circle.svg",
        "assets\/icon-head.svg",
        "assets\/check.svg"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'"
}