Hello Tab

Hello Tab replaces your new tab page with random thoughts from others

Hello Tab란 무엇입니까?

Hello Tab은(는) https://hellotab.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hello Tab replaces your new tab page with random thoughts from others"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Use this chrome extension to anonymously share a thought or simply get inspired by others thoughts every time you open a new tab (cmd+T).

Share whatever is on your mind, as long as it's less than 200 characters.

Want to use more than one new-tab-extension at once? Check out "Cycle Tab" (http://cycletab.rocks) on the chrome store!                    

확장 프로그램 기본 정보

이름 Hello Tab Hello Tab
ID nimdmcfjenibfldkceoegchnicmfagfb
공식 URL https://chromewebstore.google.com/detail/hello-tab/nimdmcfjenibfldkceoegchnicmfagfb
설명 Hello Tab replaces your new tab page with random thoughts from others
파일 크기 124 KB
설치 횟수 434
현재 버전 1.3.6
최근 업데이트 2015-09-27
출시 날짜 2015-09-27
평점 4.60/5 총 20 개의 평점
개발자 https://hellotab.com
결제 유형 free
확장 프로그램 웹 사이트 https://hellotab.com
도움말 페이지 URL https://hellotab.com#faq
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hello Tab",
    "description": "Hello Tab replaces your new tab page with random thoughts from others",
    "version": "1.3.6",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon128.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/hellotab.com\/*"
            ],
            "js": [
                "js\/content_script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "newtab.html"
    ],
    "chrome_url_overrides": {
        "newtab": "newtab.html"
    },
    "permissions": [
        "https:\/\/hellotab.com\/",
        "storage"
    ]
}