Rename Tab Title

Renames the Tab Title

Rename Tab Title란 무엇입니까?

Rename Tab Title은(는) Anush Veeranala에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Renames the Tab Title"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Renames the Tab Title (Firefox 52+)

Click the icon on the ToolBar (or) use the shortcut Cmd/Ctrl + Shift+ E (can be customized 
from chrome://extensions/shortcuts) 
You'll get a popup, enter the new title
a)Click on Save (or) Press Enter to Save or Esc to close the popup without saving title
(closing the Popup without saving makes the title non persistent)
---
b) Click on "Edit All" in the popup to manage saved titles or use regex feature

In Urls section, select the URL from dropdown located at the bottom of the page
Edit the Title in textbox
Click on save (or) Press Enter to save the title.
Click on delete to delete the title.

In Regex section, add/update regex and the corresponding title and press "Save"
eg: /.*google.*/ matches all the websites which has the term google in the url,
/*/ matches all websites

*some websites keeps updating the title on some events (eg: gmail.com updates title whenever hangouts gets initialized and whenever someone pings) this addon doesn't work in such cases as i didn't add the polling. If have any workaround for this please do mention in the comments.. thanks

If you have any suggestion for shortcut.
Please mention it in the comments and the reason why it is better.

For Firefox : https://addons.mozilla.org/en-Us/firefox/addon/rename-tab-title/                    

확장 프로그램 기본 정보

이름 Rename Tab Title Rename Tab Title
ID kppndhfiaenbiioipolacicknfmdcdep
공식 URL https://chromewebstore.google.com/detail/rename-tab-title/kppndhfiaenbiioipolacicknfmdcdep
설명 Renames the Tab Title
파일 크기 88.48 KB
설치 횟수 20,000
현재 버전 1.2
최근 업데이트 2020-02-12
출시 날짜 2020-02-12
평점 3.86/5 총 43 개의 평점
개발자 Anush Veeranala
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Rename Tab Title",
    "short_name": "RTT",
    "manifest_version": 2,
    "version": "1.2",
    "description": "Renames the Tab Title",
    "author": "Anush Veeranala",
    "homepage_url": "https:\/\/addons.mozilla.org\/en-US\/firefox\/addon\/rename-tab-title\/",
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "52.0"
        }
    },
    "developer": {
        "name": "Anush Veeranala",
        "url": "https:\/\/addons.mozilla.org\/en-US\/firefox\/user\/junnu8\/"
    },
    "icons": {
        "48": "icon.png"
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options\/options.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+E"
            }
        }
    },
    "browser_action": {
        "browser_style": false,
        "default_icon": "icon.png",
        "default_title": "Rename Tab Title",
        "default_popup": "popup\/popup.html"
    }
}