Tab Modifier

Take control of your tabs

Tab Modifier란 무엇입니까?

Tab Modifier은(는) chrome-webstore-publisher-furybee에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Take control of your tabs"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        This extension is open-source! Contribute on https://github.com/sylouuu/chrome-tab-modifier

Take control of your tabs:

- Rename tab
- Change tab icon
- Pin tab
- Prevent tab closing
- Unique tab
- Mute tab

You have to define your rules from the Options page. Quick rename can be done by right-clicking anywhere in the page and click on "Rename Tab".

Changelog: https://github.com/sylouuu/chrome-tab-modifier/releases

About Permissions: All websites are required as the extension needs to update each visited website to do its job. I don't store anything about you, your rules are saved on your computer.

The Options page contains a Google Analytics script to help me to know how this page is used. It's totally anonymized. Feel free to contact me on the GitHub project.                    

확장 프로그램 기본 정보

이름 Tab Modifier Tab Modifier
ID hcbgadmbdkiilgpifjgcakjehmafcjai
공식 URL https://chromewebstore.google.com/detail/tab-modifier/hcbgadmbdkiilgpifjgcakjehmafcjai
설명 Take control of your tabs
파일 크기 87.28 KB
설치 횟수 80,000
현재 버전 0.22.0
최근 업데이트 2018-03-01
출시 날짜 2018-03-01
평점 4.46/5 총 331 개의 평점
개발자 chrome-webstore-publisher-furybee
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/sylouuu/chrome-tab-modifier
도움말 페이지 URL https://github.com/sylouuu/chrome-tab-modifier/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Modifier",
    "version": "0.22.0",
    "description": "Take control of your tabs",
    "homepage_url": "https:\/\/github.com\/sylouuu\/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"
    ]
}