ShowIp
Show IPv4 & IPv6 addresses of the current webpage without doing external requests to a home server.
Vad är ShowIp?
ShowIp är en Chrome-tillägg utvecklad av https://opensource.teqneers.com, och dess huvudfunktion är "Show IPv4 & IPv6 addresses of the current webpage without doing external requests to a home server.".
Tilläggsskärmbilder
Ladda ner ShowIp-förlängningens CRX-fil
Ladda ner ShowIp-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
This extension works with Google Chrome 18 (beta) or higher. Grundläggande Information om Tillägg
| Namn | |
| ID | agoljmemkbciolpigpabjfkagboolkcj |
| Officiell webbadress | https://chromewebstore.google.com/detail/showip/agoljmemkbciolpigpabjfkagboolkcj |
| Beskrivning | Show IPv4 & IPv6 addresses of the current webpage without doing external requests to a home server. |
| Filstorlek | 54.38 KB |
| Antal Installationer | 23,164 |
| Aktuell Version | 1.0 |
| Senast Uppdaterad | 2012-05-19 |
| Publiceringsdatum | 2012-05-19 |
| Betyg | 3.50/5 Totalt 80 Betyg |
| Utvecklare | https://opensource.teqneers.com |
| Betalningssätt | free |
| Tilläggswebbplats | http://opensource.teqneers.com/showip.html |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
"name": "ShowIp",
"minimum_chrome_version": "18",
"version": "1.0",
"description": "Show IPv4 & IPv6 addresses of the current webpage without doing external requests to a home server.",
"icons": {
"16": "icons\/icon_016.png",
"48": "icons\/icon_048.png",
"128": "icons\/icon_128.png"
},
"permissions": [
"webRequest",
"*:\/\/*\/*"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"all_frames": false,
"css": [
"ip.css"
],
"js": [
"jquery-1.7.1.min.js",
"ip.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"run_at": "document_end"
}
],
"manifest_version": 2
} | |