MyAlgorithm

Your personal recommendation feed - be in control of your algorithm

MyAlgorithm là gì?

MyAlgorithm là một tiện ích mở rộng Chrome được phát triển bởi jawerty, và tính năng chính của nó là "Your personal recommendation feed - be in control of your algorithm".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng MyAlgorithm

Tải xuống các tệp mở rộng MyAlgorithm dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên MyAlgorithm MyAlgorithm
ID imkkppomfljhnaaolbdgffnleejjbpjn
URL Chính Thức https://chromewebstore.google.com/detail/myalgorithm/imkkppomfljhnaaolbdgffnleejjbpjn
Mô tả Your personal recommendation feed - be in control of your algorithm
Kích Thước Tệp 744 KB
Số Lần Cài Đặt 92
Phiên Bản Hiện Tại 0.5.0
Cập Nhật Lần Cuối 2022-09-03
Ngày Phát Hành 2022-07-19
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển jawerty
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/jawerty/myAlgorithm
URL Trang Trợ Giúp https://discord.gg/YmVzHUNfYd
URL Trang Chính Sách Bảo Mật https://github.com/jawerty/myAlgorithm/blob/main/README.md
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}