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文件

下载MyAlgorithm扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    }
}