Title with URL

Get the active web page's title and URL.

Hvad er Title with URL?

Title with URL er en Chrome-udvidelse udviklet af R4HS Inc., og dens hovedfunktion er "Get the active web page's title and URL.".

Udvidelsesskærmbilleder

screenshot

Download Title with URL-udvidelses-CRX-fil

Download Title with URL-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Title with URL Title with URL
ID cgnjbelglgfnjfdlfdggdeglimegedpp
Officiel URL https://chromewebstore.google.com/detail/title-with-url/cgnjbelglgfnjfdlfdggdeglimegedpp
Beskrivelse Get the active web page's title and URL.
Filstørrelse 105 KB
Antal Installationer 30
Nuværende Version 0.2
Senest Opdateret 2014-09-25
Udgivelsesdato 2014-09-24
Bedømmelse 2.00/5 Samlet 1 Bedømmelser
Udvikler R4HS Inc.
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
    ]
}