Chrome Tab Renamer

Chrome Tab Renamer allows you to update the name of tabs in your browser.

Chrome Tab Renamer란 무엇입니까?

Chrome Tab Renamer은(는) wcchristian에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome Tab Renamer allows you to update the name of tabs in your browser."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        If you have ever lost track of multiple tabs of the same site, this extension can help! 

* Persists tabs even if you navigate to a different page if you wish.
* Remove renames and go back to the original tab title.
* Options page allows you to view renamed tabs and clear them.                    

확장 프로그램 기본 정보

이름 Chrome Tab Renamer Chrome Tab Renamer
ID jbjkejjogkedpjendhaccnccmeiafied
공식 URL https://chromewebstore.google.com/detail/chrome-tab-renamer/jbjkejjogkedpjendhaccnccmeiafied
설명 Chrome Tab Renamer allows you to update the name of tabs in your browser.
파일 크기 15.17 KB
설치 횟수 1,624
현재 버전 1.3
최근 업데이트 2018-11-17
출시 날짜 2018-11-11
평점 3.00/5 총 10 개의 평점
개발자 wcchristian
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chrome Tab Renamer",
    "version": "1.3",
    "description": "Chrome Tab Renamer allows you to update the name of tabs in your browser.",
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "background": {
        "scripts": [
            ".\/background\/background.js"
        ],
        "persistent": false
    },
    "omnibox": {
        "keyword": "r"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Shift+Ctrl+E",
                "mac": "Shift+Command+E"
            }
        }
    },
    "browser_action": {
        "default_popup": ".\/popup\/popup.html",
        "default_icon": {
            "16": "images\/logo_16.png",
            "32": "images\/logo_32.png",
            "48": "images\/logo_48.png",
            "128": "images\/logo_128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/content\/content.js"
            ]
        }
    ],
    "options_page": ".\/options\/options.html",
    "icons": {
        "16": "images\/logo_16.png",
        "32": "images\/logo_32.png",
        "48": "images\/logo_48.png",
        "128": "images\/logo_128.png"
    },
    "manifest_version": 2
}