Title with URL

Get the active web page's title and URL.

Что такое Title with URL?

Title with URL - это расширение Chrome, разработанное R4HS Inc., и его основная функция - "Get the active web page's title and URL.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Title with URL

Скачайте файлы расширений 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"
    ]
}