HitchHiker

A chrome extension for collaboratively surfing the web with others

HitchHiker란 무엇입니까?

HitchHiker은(는) https://toddwords.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A chrome extension for collaboratively surfing the web with others"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

HitchHiker 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}