Title with URL

Get the active web page's title and URL.

Vad är Title with URL?

Title with URL är en Chrome-tillägg utvecklad av R4HS Inc., och dess huvudfunktion är "Get the active web page's title and URL.".

Tilläggsskärmbilder

screenshot

Ladda ner Title with URL-förlängningens CRX-fil

Ladda ner Title with URL-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Title with URL Title with URL
ID cgnjbelglgfnjfdlfdggdeglimegedpp
Officiell webbadress https://chromewebstore.google.com/detail/title-with-url/cgnjbelglgfnjfdlfdggdeglimegedpp
Beskrivning Get the active web page's title and URL.
Filstorlek 105 KB
Antal Installationer 30
Aktuell Version 0.2
Senast Uppdaterad 2014-09-25
Publiceringsdatum 2014-09-24
Betyg 2.00/5 Totalt 1 Betyg
Utvecklare R4HS Inc.
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}