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
Eメール [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"
    }
}