Pingler

Ping any page you are on by clicking on the icon in your browser

Was ist Pingler?

Pingler ist eine Chrome-Erweiterung, die von https://pingler.com entwickelt wurde, und ihr Hauptmerkmal ist "Ping any page you are on by clicking on the icon in your browser".

Erweiterungsscreenshots

Pingler-Erweiterungs-CRX-Datei herunterladen

Laden Sie Pingler-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

                        This Add-on is an excellent way for you to ping any page on-the-fly. If you are on a page and want to Ping it, just click on the Pingler icon in your Chrome browser and the URL of the page will be sent to Pingler and pinged automatically for you.                    

Grundlegende Informationen zur Erweiterung

Name Pingler Pingler
ID odgiehjnopebofbjkgdjenflakfaahnm
Offizielle URL https://chromewebstore.google.com/detail/pingler/odgiehjnopebofbjkgdjenflakfaahnm
Beschreibung Ping any page you are on by clicking on the icon in your browser
Dateigröße 151 KB
Installationsanzahl 3,197
Aktuelle Version 1.5.0
Letztes Update 2015-11-18
Veröffentlichungsdatum 2015-11-18
Bewertung 3.79/5 Insgesamt 29 Bewertungen
Entwickler https://pingler.com
Zahlungsart free
Erweiterungswebsite http://pingler.com
Hilfeseite URL http://pingler.com/helpdesk/
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pingler",
    "version": "1.5.0",
    "icons": {
        "16": "img\/Icon16x16.png",
        "19": "img\/Icon19x19.png",
        "48": "img\/Icon48x48.png",
        "128": "img\/Icon128x128.png"
    },
    "description": "Ping any page you are on by clicking on the icon in your browser",
    "browser_action": {
        "default_title": "Press to see more actions",
        "default_icon": "img\/Icon19x19.png"
    },
    "options_page": "options\/options.html",
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/jquery-1.6.1.min.js",
                "js\/popup.js"
            ],
            "permissions": [
                "tabs",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "contextMenus",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}