Web Acknowledgement

A Chrome extension that performs a land acknowledgement based on where the website is stored physically

Web Acknowledgementคืออะไร?

Web Acknowledgement เป็นส่วนขยายของ Chrome ที่พัฒนาโดย caleblstone และคุณลักษณะหลักของมันคือ "A Chrome extension that performs a land acknowledgement based on where the website is stored physically"

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

screenshot

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

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

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

                        I made this extension with the hope that it would help dispel the myth of “the cloud.” The internet exists in physical space and when we use the internet, we use land. Most of the internet is stored within large, energy intensive spaces that we call “server farms.” However, these “farms” are not community gardens, they are industrial plantations, exploiting the land and rendering it unusable by creatures of all sorts. And like industrial agriculture on much of the American continents, these server “farms” extract value from land that doesn’t belong to those who profit from them.

This extension can be used as a useful tool, but its primary purpose is to encourage users to rethink what the internet is. Acknowledging land is rather performative without considering reparative methods that attempt to cede colonial control of indigenous soil. How then, do we build a web that dismantles colonial, profit-driven digital infrastructure — a web developed by the stewards of the land it occupies? What would network infrastructure look like if designed using indigenous agricultural logic? How can we plant digital community gardens? Can there be native code as there are native organisms?                    

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

ชื่อ Web Acknowledgement Web Acknowledgement
ID dimpmephpcddcichkcicdljjgdhjkgop
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/web-acknowledgement/dimpmephpcddcichkcicdljjgdhjkgop
คำอธิบาย A Chrome extension that performs a land acknowledgement based on where the website is stored physically
ขนาดไฟล์ 76.97 KB
จำนวนการติดตั้ง 76
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2021-02-11
วันที่เผยแพร่ 2021-01-18
ผู้พัฒนา caleblstone
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Web Acknowledgement",
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "description": "A Chrome extension that performs a land acknowledgement based on where the website is stored physically",
    "version": "1.0",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/*"
            ],
            "js": [
                "private_keys.js",
                "jquery-3.5.1.min.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "images\/Corn16.png",
        "48": "images\/Corn48.png",
        "128": "images\/Corn128.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ]
}