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
官方網址 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"
    }
}