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文件

下载Add URL to page title扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
            ]
        }
    ]
}