Add URL to page title

Simply adds the URL to the title bar.

Add URL to page title란 무엇입니까?

Add URL to page title은(는) Simon Perry에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simply adds the URL to the title bar."입니다.

Add URL to page title 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This put the URL of any web page you're on into the page title in the format:

Original Title |url:[http://www.the-url.com]

But why?

In Chrome, other applications used to be able to use Chrome_OmniboxView to get the URL of the page you are on. Since version 28, you can no longer do this.

However, you can still get the title of the window. This simple Chrome extension puts the URL into the title to make it available to other applications.                    

확장 프로그램 기본 정보

이름 Add URL to page title Add URL to page title
ID ghpeimfjbonkimelnkbgekmcboomkgmi
공식 URL https://chromewebstore.google.com/detail/add-url-to-page-title/ghpeimfjbonkimelnkbgekmcboomkgmi
설명 Simply adds the URL to the title bar.
파일 크기 2.79 KB
설치 횟수 733
현재 버전 1.0
최근 업데이트 2013-09-17
출시 날짜 2013-09-17
평점 4.29/5 총 7 개의 평점
개발자 Simon Perry
이메일 [email protected]
결제 유형 free
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Add URL to page title",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Simply adds the URL to the title bar.",
    "permissions": [
        "tabs",
        "http:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "inject.js"
            ]
        }
    ]
}