HitchHiker

A chrome extension for collaboratively surfing the web with others

HitchHikerคืออะไร?

HitchHiker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://toddwords.com และคุณลักษณะหลักของมันคือ "A chrome extension for collaboratively surfing the web with others"

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

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        HitchHiker is a tool for collaborative social web browsing. Users can create a room, and then move around the internet together. Whenever the room creator (or "guide") goes to a new website the other members of the room are taken there too. In addition, the guide can put on fun effects on top of the page, such as covering the screen with animated gifs or playing sound effects. The guide can present live in real time, or record a presentation inside HitchHiker to playback for an audience in the future. Or, in a more social setting, the role of guide can be passed around the room as everyone takes a turn sharing web sites.

Everyone in a HitchHiker room shares a common chat room that is layered on top of every web page visited, allowing HitchHiker to be used for socializing, education, presentations and live performance.

HitchHiker is created and maintained by Todd Anderson (https://toddwords.com), and has been supported by the CultureHub Artist Residency Program and the We Be Imagining Incubator at Columbia University.

Video credit to J Khadijah Abdurahman and the We Be Imagining.                    

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

ชื่อ HitchHiker HitchHiker
ID mjjhbnjkfgenbfmgpbnnjgmkckffkemn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/hitchhiker/mjjhbnjkfgenbfmgpbnnjgmkckffkemn
คำอธิบาย A chrome extension for collaboratively surfing the web with others
ขนาดไฟล์ 863 KB
จำนวนการติดตั้ง 239
เวอร์ชันปัจจุบัน 0.9.11
อัปเดตครั้งล่าสุด 2021-04-27
วันที่เผยแพร่ 2020-09-02
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา https://toddwords.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://toddwords.com/hitchhiker
URL หน้าช่วยเหลือ https://github.com/toddwords/HitchHiker
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HitchHiker",
    "version": "0.9.11",
    "manifest_version": 2,
    "description": "A chrome extension for collaboratively surfing the web with others",
    "homepage_url": "https:\/\/github.com\/toddwords\/HitchHiker",
    "icons": {
        "16": "icons\/hitchhiker16.png",
        "48": "icons\/hitchhiker48.png",
        "128": "icons\/hitchhiker128.png"
    },
    "default_locale": "en",
    "background": {
        "page": "src\/bg\/background.html",
        "persistent": true
    },
    "options_page": "src\/options_custom\/index.html",
    "browser_action": {
        "default_icon": "icons\/hitchhiker.png",
        "default_title": "HitchHiker",
        "default_popup": "src\/browser_action\/index.html"
    },
    "permissions": [
        "tabs",
        "webNavigation",
        "tts",
        "storage",
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "assets\/*",
        "js\/*",
        "src\/user_created\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "js\/jquery-3.3.1.js",
                "js\/p5.min.js",
                "src\/modules\/guideActions.js",
                "src\/inject\/inject.js"
            ],
            "css": [
                "src\/inject\/injectStyle.css"
            ]
        }
    ]
}