MyAlgorithm

Your personal recommendation feed - be in control of your algorithm

MyAlgorithm란 무엇입니까?

MyAlgorithm은(는) jawerty에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Your personal recommendation feed - be in control of your algorithm"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Own a personal recommendation feed based on your browsing habits.

myAlgorithm is a tool for taking control of your recommendations. It tracks and stores your browsing habits locally (all your data is stored safely in your browser) and generates recommended content from across the web (youtube videos, tweets, reddit posts and more). You can view and edit your algorithm as you browse the web. 

Now, you can add your own content sources instantly beyond the default content sources (twitter, youtube, quora, wikipedia etc.)

Join the discord if you're interested in contributing and growing the project https://discord.gg/YmVzHUNfYd
https://github.com/jawerty/myAlgorithm

If you enjoy this extension, please donate so I can build tools like this full time!
https://www.buymeacoffee.com/bjGHFVW355                    

확장 프로그램 기본 정보

이름 MyAlgorithm MyAlgorithm
ID imkkppomfljhnaaolbdgffnleejjbpjn
공식 URL https://chromewebstore.google.com/detail/myalgorithm/imkkppomfljhnaaolbdgffnleejjbpjn
설명 Your personal recommendation feed - be in control of your algorithm
파일 크기 744 KB
설치 횟수 92
현재 버전 0.5.0
최근 업데이트 2022-09-03
출시 날짜 2022-07-19
평점 5.00/5 총 2 개의 평점
개발자 jawerty
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/jawerty/myAlgorithm
도움말 페이지 URL https://discord.gg/YmVzHUNfYd
개인정보 보호 정책 페이지 URL https://github.com/jawerty/myAlgorithm/blob/main/README.md
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "MyAlgorithm",
    "description": "Your personal recommendation feed - be in control of your algorithm",
    "version": "0.5.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "dist\/content.bundle.js"
            ]
        }
    ],
    "permissions": [
        "webRequest",
        "storage"
    ],
    "action": {
        "default_icon": {
            "32": "popup_assets\/icon_32.png"
        },
        "default_title": "Click Me",
        "default_popup": "popup.html"
    }
}