Anchor

https://github.com/benjchan/Anchor The infinite scroll. It's dangerously easy to scroll mindlessly for hours, especially when it…

Anchorคืออะไร?

Anchor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย 2br-2b และคุณลักษณะหลักของมันคือ "https://github.com/benjchan/Anchor The infinite scroll. It's dangerously easy to scroll mindlessly for hours, especially when it…"

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

screenshot
screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Anchor ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        https://github.com/benjchan/Anchor

The infinite scroll. It's dangerously easy to scroll mindlessly for hours, especially when it comes to social media.
 
So what if we playfully visualised infinite scrolling as a deep sea dive, to help people experience their scrolling habit more tangibly?
 
Anchor is a simple Chrome extension which plays on this feeling of sinking. The further down you scroll, the deeper you dive — and you can watch as your screen slowly turns a dark blue, a little fish swims across your screen, and finally, you hit a (literal) rock bottom.
 
We're thinking this could be easily adapted and expanded (by you!) into a whole series of scrolling experiments. Think cave exploring, parachuting, digging to the center of the Earth... All our code is available on GitHub (https://github.com/benjchan/Anchor) for you to play with and evolve.

Project created by:
- Brendan Browne-Adams (https://www.brendanbrownedesigns.com/)
- Lahari Goswami (https://laharigoswami.cargo.site)
- Miki Chiu (https://www.mikichiu.com)
- Tayo Kopfer (https://tayo.co.za)
- Twomuch Studio (https://twomuch.studio)

For a more up-to-date version, check out https://chrome.google.com/webstore/detail/anchor/edefjkgbhajbmjkkclpacaelombcdiik. This is provided for those who prefer the simplicity of the original extension.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Anchor Anchor
ID nfppjlpaidcfmedlabaolkimdmkjpode
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/anchor/nfppjlpaidcfmedlabaolkimdmkjpode
คำอธิบาย https://github.com/benjchan/Anchor The infinite scroll. It's dangerously easy to scroll mindlessly for hours, especially when it…
ขนาดไฟล์ 90.42 KB
จำนวนการติดตั้ง 75
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2020-11-27
วันที่เผยแพร่ 2020-11-27
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา 2br-2b
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://experiments.withgoogle.com/anchor
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Anchor",
    "version": "1.0.0",
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.2.1.js",
                "content.js"
            ],
            "css": [
                "main.css"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    }
}