Title with URL
Get the active web page's title and URL.
Wat is Title with URL?
Title with URL is een Chrome-extensie ontwikkeld door R4HS Inc., en de belangrijkste functie is "Get the active web page's title and URL.".
Extensie Screenshots
Download het CRX-bestand van de extensie Title with URL
Download Title with URL-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | cgnjbelglgfnjfdlfdggdeglimegedpp |
| Officiële URL | https://chromewebstore.google.com/detail/title-with-url/cgnjbelglgfnjfdlfdggdeglimegedpp |
| Beschrijving | Get the active web page's title and URL. |
| Bestandsgrootte | 105 KB |
| Aantal Installaties | 30 |
| Huidige Versie | 0.2 |
| Laatst Bijgewerkt | 2014-09-25 |
| Publicatiedatum | 2014-09-24 |
| Beoordeling | 2.00/5 Totaal 1 Beoordelingen |
| Ontwikkelaar | R4HS Inc. |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
]
} | |