Newsfeed Eradicator 2.0

An inspiring quote instead of a newsfeed each time you open your social media.

Newsfeed Eradicator 2.0란 무엇입니까?

Newsfeed Eradicator 2.0은(는) office에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An inspiring quote instead of a newsfeed each time you open your social media."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Newsfeed Eradicator 2.0 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        ⬇️ Easy to set up ⬇️:

1. Install and pin📌 the extension to Chrome.
2. A new tab 🗂 will open to ask you to select the platforms to avoid the news feed the next time you open it.
3. Open that site and get a quote instead of a never-ending newsfeed.

✨ Features ✨

1. Supports all the major social media platforms i.e., FaceBook, Twitter, GitHub, etc.
2. Add your own quotes.
3. Ability to switch and use the other functionalities as usual.

Download this add-on to break your annoying habit of endless scrolling on various social media platforms. 🧑‍💻                    

확장 프로그램 기본 정보

이름 Newsfeed Eradicator 2.0 Newsfeed Eradicator 2.0
ID clfonknljamomadgkcciofnhfegjinhd
공식 URL https://chromewebstore.google.com/detail/newsfeed-eradicator-20/clfonknljamomadgkcciofnhfegjinhd
설명 An inspiring quote instead of a newsfeed each time you open your social media.
파일 크기 296 KB
설치 횟수 953
현재 버전 0.0.1
최근 업데이트 2023-02-22
출시 날짜 2023-02-21
평점 3.00/5 총 6 개의 평점
개발자 office
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://docs.google.com/document/d/1dQ9QQunN7RQXo0BTH2QpKX7RV1nUpE3QSjNjWpCGjVM/edit?usp=sharing
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.0.1",
    "manifest_version": 3,
    "minimum_chrome_version": "88",
    "name": "Newsfeed Eradicator 2.0",
    "description": "An inspiring quote instead of a newsfeed each time you open your social media.",
    "icons": {
        "128": "icons\/icon.png"
    },
    "action": {
        "title": "Newsfeed Eradicator 2.0"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "css": [
                "css\/content.css"
            ],
            "js": [
                "js\/content_script.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": ".\/js\/background.js"
    },
    "options_ui": {
        "browser_style": true,
        "open_in_tab": false,
        "page": "index.html"
    }
}