Tab Titler 2.0

Tab Titler 2.0

Tab Titler 2.0란 무엇입니까?

Tab Titler 2.0은(는) Tim에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Tab Titler 2.0"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        This extension lets you change the title of a tab on the go and manage them over time.

Press ALT + SHIFT + S to automatically begin renaming a tab. 
Renames will persist and last for as long as you want! 
View the options page to manage all your saved tab aliases. 

Browser to Browser Renaming - if you're logged into Chrome your saved names come with you!

Its dead simple. No extra fluff and no unnecessary banter - it does the job and the way you want it done!                    

확장 프로그램 기본 정보

이름 Tab Titler 2.0 Tab Titler 2.0
ID aolhnnheicpbohggibkibdmfdkmkaocc
공식 URL https://chromewebstore.google.com/detail/tab-titler-20/aolhnnheicpbohggibkibdmfdkmkaocc
설명 Tab Titler 2.0
파일 크기 42.11 KB
설치 횟수 234
현재 버전 1.0
최근 업데이트 2019-02-02
출시 날짜 2019-01-29
평점 4.33/5 총 3 개의 평점
개발자 Tim
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Titler 2.0",
    "version": "1.0",
    "description": "Tab Titler 2.0",
    "icons": {
        "16": "tab16.png",
        "48": "tab48.png",
        "128": "tab128.png"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "commands": {
        "rename_tab": {
            "suggested_key": {
                "default": "Alt+Shift+S"
            },
            "description": "Save a Tab Name"
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    }
}