Title with URL
Get the active web page's title and URL.
Was ist Title with URL?
Title with URL ist eine Chrome-Erweiterung, die von R4HS Inc. entwickelt wurde, und ihr Hauptmerkmal ist "Get the active web page's title and URL.".
Erweiterungsscreenshots
Title with URL-Erweiterungs-CRX-Datei herunterladen
Laden Sie Title with URL-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
                        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.                     Grundlegende Informationen zur Erweiterung
| Name |   |  
| ID | cgnjbelglgfnjfdlfdggdeglimegedpp | 
| Offizielle URL | https://chromewebstore.google.com/detail/title-with-url/cgnjbelglgfnjfdlfdggdeglimegedpp | 
| Beschreibung | Get the active web page's title and URL. | 
| Dateigröße | 105 KB | 
| Installationsanzahl | 30 | 
| Aktuelle Version | 0.2 | 
| Letztes Update | 2014-09-25 | 
| Veröffentlichungsdatum | 2014-09-24 | 
| Bewertung | 2.00/5 Insgesamt 1 Bewertungen | 
| Entwickler | R4HS Inc. | 
| [email protected] | |
| Zahlungsart | free | 
| Unterstützte Sprachen | 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"
    ]
}  |  |