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.
Eメール [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"
    ]
}