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
官方網址 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"
    ]
}