Title with URL

Get the active web page's title and URL.

Qu'est-ce que Title with URL ?

Title with URL est une extension Chrome développée par R4HS Inc., et sa fonction principale est "Get the active web page's title and URL.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Title with URL

Téléchargez les fichiers d'extension Title with URL au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Title with URL Title with URL
ID cgnjbelglgfnjfdlfdggdeglimegedpp
URL Officiel https://chromewebstore.google.com/detail/title-with-url/cgnjbelglgfnjfdlfdggdeglimegedpp
Description Get the active web page's title and URL.
Taille du Fichier 105 KB
Nombre d'Installations 30
Version Actuelle 0.2
Dernière Mise à Jour 2014-09-25
Date de Publication 2014-09-24
Évaluation 2.00/5 Total 1 Évaluations
Développeur R4HS Inc.
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}