Simple Tab Renamer
A simple chrome tab renamer extension
Simple Tab Renamer란 무엇입니까?
Simple Tab Renamer은(는) arshad에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A simple chrome tab renamer extension"입니다.
확장 프로그램 스크린샷
Simple Tab Renamer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Lets you rename the title of the any tab. Very handy when you feel your tab title need more descriptive or personalized names. Also, the title sticks to the tab even if you navigate to a different page within the same tab! Note: This may not work on websites (Ex: chrome webstore, facebook etc) which do not get affected by this tab title change.
확장 프로그램 기본 정보
이름 | Simple Tab Renamer |
ID | ailhpmlejogfdcpoflidmobgkgdemaog |
공식 URL | https://chromewebstore.google.com/detail/simple-tab-renamer/ailhpmlejogfdcpoflidmobgkgdemaog |
설명 | A simple chrome tab renamer extension |
파일 크기 | 27.37 KB |
설치 횟수 | 14,055 |
현재 버전 | 2.2 |
최근 업데이트 | 2022-06-02 |
출시 날짜 | 2017-08-01 |
평점 | 3.51/5 총 59 개의 평점 |
개발자 | arshad |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "2.2", "name": "Simple Tab Renamer", "description": "A simple chrome tab renamer extension", "browser_action": { "default_icon": ".\/styles\/extension_icon.png", "default_popup": "extension_content.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content_script.js" ] } ], "icons": { "16": ".\/styles\/extension_icon.png", "48": ".\/styles\/extension_icon.png", "128": ".\/styles\/extension_icon.png" }, "background": { "scripts": [ "background_script.js" ] }, "permissions": [] } |