Tab Renamer

Take control of your tabs

Tab Renamer란 무엇입니까?

Tab Renamer은(는) Elon Z에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Take control of your tabs"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        This is a fork version of Tab Modifier with more features/bugfix.
1. [New Feature] Support unique rules by url,
2. [New Feature] Disable a rule temporarily,
3. [New Feature] Allow to hide right-click menu item.
4. [Bug Fix] Selector grammar not working when element is lazy-loaded.                    

확장 프로그램 기본 정보

이름 Tab Renamer Tab Renamer
ID kpijejpdbpeaakidlcopnbjohbfimnod
공식 URL https://chromewebstore.google.com/detail/tab-renamer/kpijejpdbpeaakidlcopnbjohbfimnod
설명 Take control of your tabs
파일 크기 98.48 KB
설치 횟수 238
현재 버전 0.23.0
최근 업데이트 2021-02-28
출시 날짜 2021-02-27
평점 3.50/5 총 2 개의 평점
개발자 Elon Z
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/imageslr/chrome-tab-modifier
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Renamer",
    "version": "0.23.0",
    "description": "Take control of your tabs",
    "homepage_url": "https:\/\/github.com\/imageslr\/chrome-tab-modifier",
    "icons": {
        "16": "img\/icon_16.png",
        "32": "img\/icon_32.png",
        "48": "img\/icon_48.png",
        "128": "img\/icon_128.png"
    },
    "browser_action": {
        "default_icon": "img\/icon_48.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com https:\/\/www.google-analytics.com; object-src 'self'",
    "options_page": "html\/options.html",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "img\/*"
    ],
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs",
        "storage",
        "contextMenus",
        "alarms",
        "notifications"
    ]
}