MyAlgorithm

Your personal recommendation feed - be in control of your algorithm

MyAlgorithmคืออะไร?

MyAlgorithm เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jawerty และคุณลักษณะหลักของมันคือ "Your personal recommendation feed - be in control of your algorithm"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย MyAlgorithm

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}