Write Wall

A simple, sync-able text pad similar to Write Space

Write Wallคืออะไร?

Write Wall เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jared M. Scott และคุณลักษณะหลักของมันคือ "A simple, sync-able text pad similar to Write Space"

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

screenshot

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

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

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

                        Write Wall was created to simply be able to share text content across multiple computers running under the same Chrome account. It's a simple concept with a simple solution: create an extension that allows users to paste whatever content and access it from any computer running Chrome. 

I hope you find it as useful as I have and please feel free to fork this project on Github and/or provide suggestions for improving Write Wall.

Version history

2.1.6 | Feb 16, 2024
- Ensure manifest version and Node package are up-to-date

2.1.5 | Feb 16, 2024
- Bump packages to latest
- Update copyright to include 2024
- Remove unused package

2.1.2 | May 11, 2023
- Update licensing language to CC BY SA 4.0
- Bump packages to latest

2.1.1 | May 11, 2023
- Cleanup the usage of magic constants
- Streamline the throttling behavior

2.1.0 | May 10, 2023
- Migrate to Typescript
- Enable Webpack and building via Webpack
- Remove Dependency on lodash

2.0.5 | May 5, 2023
- Upgrade the manifest.json file to manifest v3
- Standardize the copyright notices
- Update to node v20 and switch to using npm from yarn

2.0.4 | Jul 4, 2022
- Remove "Tabs" permission on package

2.0.3 | Sep 4, 2020
- Remove "Dev" naming convention on package

2.0.2 | Sep 3, 2020
- Update the Content Security Policy for the inline script to initialize Google Analytics.

2.0.1 | Sep 2, 2020
This version moves the size indicator to the top of the viewing area for ease of use. 

2.0 | Sep 2, 2020 
This version updates many of the internal inconsistencies with prior versions. Your data will no longer be wiped out while using the extension. In addition, writing within the tool will no longer have issues with intermittently removing the last few characters inputted. Please let me know how it works!                    

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

ชื่อ Write Wall Write Wall
ID epjfmbaohjlmcbnmobhiilcdccjbpmlg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/write-wall/epjfmbaohjlmcbnmobhiilcdccjbpmlg
คำอธิบาย A simple, sync-able text pad similar to Write Space
ขนาดไฟล์ 259 KB
จำนวนการติดตั้ง 670
เวอร์ชันปัจจุบัน 2.1.6
อัปเดตครั้งล่าสุด 2024-02-22
วันที่เผยแพร่ 2012-07-16
คะแนน 3.40/5 รวมทั้งหมด 10 คะแนน
ผู้พัฒนา Jared M. Scott
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/gcko/Write-Wall
URL หน้าช่วยเหลือ https://github.com/gcko/Write-Wall/wiki/Getting-Started
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Write Wall",
    "version": "2.1.6",
    "manifest_version": 3,
    "incognito": "split",
    "description": "A simple, sync-able text pad similar to Write Space",
    "icons": {
        "16": "images\/icon-16.png",
        "19": "images\/icon.png",
        "48": "images\/icon-48.png",
        "64": "images\/icon-64.png",
        "128": "images\/icon-128.png",
        "512": "images\/icon-512.png"
    },
    "action": {
        "default_icon": {
            "16": "images\/icon-16.png",
            "19": "images\/icon.png",
            "48": "images\/icon-48.png"
        }
    },
    "background": {
        "service_worker": "service_worker.bundle.js"
    },
    "permissions": [
        "storage"
    ]
}