Tab ReTitle

Change tab titles easily!

Tab ReTitle란 무엇입니까?

Tab ReTitle은(는) layzuki에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Change tab titles easily!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Simply click on the icon to rename the tab title. 
Features:
+ Persistent throughout multiple sessions
+ Titles saved across devices (under the same account)
+ Domain-level titles
+ Option to set a temporary title 
+ Option to lock the title to a tab
+ Keyboard shortcut with ALT+ SHIFT + X 
+ Context menu option
+ Local file pages can have titles too
+ Use saved bookmarks' titles
+ Prefix the original titles (Using $0 inserts the old title)

Beta features: (Might not work perfectly)
+ Regex capture & replacements
+ Regex URL matching and captures                    

확장 프로그램 기본 정보

이름 Tab ReTitle Tab ReTitle
ID hilgambgdpjgljhjdaccadahckpdiapo
공식 URL https://chromewebstore.google.com/detail/tab-retitle/hilgambgdpjgljhjdaccadahckpdiapo
설명 Change tab titles easily!
파일 크기 172 KB
설치 횟수 5,962
현재 버전 1.5.2
최근 업데이트 2020-08-27
출시 날짜 2018-11-19
평점 4.62/5 총 45 개의 평점
개발자 layzuki
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/Lazyuki/ReTitle/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab ReTitle",
    "short_name": "ReTitle",
    "description": "Change tab titles easily!",
    "version": "1.5.2",
    "author": "Lazyuki",
    "homepage_url": "https:\/\/github.com\/Lazyuki\/ReTitle",
    "browser_action": {
        "default_icon": ".\/images\/icon256.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": ".\/images\/icon16.png",
        "32": ".\/images\/icon32.png",
        "64": ".\/images\/icon64.png",
        "128": ".\/images\/icon128.png",
        "256": ".\/images\/icon256.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+X",
                "mac": "Alt+Shift+X",
                "linux": "Alt+Shift+X"
            },
            "description": "Set new title"
        }
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "",
        "contextMenus",
        "bookmarks"
    ]
}