Title with URL

Get the active web page's title and URL.

什么是Title with URL?

Title with URL是由R4HS Inc.开发的Chrome扩展程序,该扩展的主要功能是“Get the active web page's title and URL.”。

扩展截图

screenshot

下载Title with URL扩展crx文件

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

扩展使用说明

                        You can easily get the active web page's title and URL by this app.

Updates:
v0.1
 - First beta version.
v0.2
 - Click to copy a title of the active tab page and its URL as from plain text to text/html into clip board.                    

扩展基本信息

名称 Title with URL Title with URL
ID cgnjbelglgfnjfdlfdggdeglimegedpp
官方URL https://chromewebstore.google.com/detail/title-with-url/cgnjbelglgfnjfdlfdggdeglimegedpp
简介 Get the active web page's title and URL.
文件大小 105 KB
安装次数 30
当前版本 0.2
更新时间 2014-09-25
上架时间 2014-09-24
评分 2.00/5 共1次评分
开发者 R4HS Inc.
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Title with URL",
    "description": "Get the active web page's title and URL. ",
    "version": "0.2",
    "manifest_version": 2,
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "name": "Retrieve",
        "default_popup": "popup.html",
        "default_icon": {
            "19": "twu-icon-19.png",
            "38": "twu-icon-38.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.com\/"
            ],
            "js": [
                "jquery-2.1.1.min.js",
                "content_script.js"
            ]
        }
    ],
    "icons": {
        "16": "twu-icon-16.png",
        "128": "twu-icon-128.png"
    },
    "permissions": [
        "clipboardWrite",
        "tabs",
        "activeTab"
    ]
}