SLEEKer

This extension allows the user quickly calculate the average Best Seller Rank of Kindle ebooks on Amazon.

Was ist SLEEKer?

SLEEKer ist eine Chrome-Erweiterung, die von Rstudioworks entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows the user quickly calculate the average Best Seller Rank of Kindle ebooks on Amazon.".

Erweiterungsscreenshots

screenshot

SLEEKer-Erweiterungs-CRX-Datei herunterladen

Laden Sie SLEEKer-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 extension allows the user quickly calculate the average Best Seller Rank of Kindle ebooks on Amazon.                    

Grundlegende Informationen zur Erweiterung

Name SLEEKer SLEEKer
ID nllobgeilpicophinmkbeaiekdcflkbo
Offizielle URL https://chrome.google.com/webstore/detail/sleeker/nllobgeilpicophinmkbeaiekdcflkbo
Beschreibung This extension allows the user quickly calculate the average Best Seller Rank of Kindle ebooks on Amazon.
Dateigröße 136 KB
Installationsanzahl 30
Aktuelle Version 1.0.1
Letztes Update 2019-11-04
Veröffentlichungsdatum 2019-11-04
Entwickler Rstudioworks
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://sleeker.pro
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SLEEKer",
    "description": "This extension allows the user quickly calculate the average Best Seller Rank of Kindle ebooks on Amazon.",
    "version": "1.0.1",
    "icons": {
        "128": "images\/icon_128.png",
        "48": "images\/icon_48.png",
        "16": "images\/icon_16.png"
    },
    "page_action": {
        "default_icon": "images\/icon_16.png",
        "default_popup": "popup.html",
        "default_title": "SLEEKer"
    },
    "background": {
        "scripts": [
            "scripts\/jquery-3.4.1.min.js",
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.amazon.ca\/*",
                "*:\/\/*.amazon.co.jp\/*",
                "*:\/\/*.amazon.co.uk\/*",
                "*:\/\/*.amazon.com.au\/*",
                "*:\/\/*.amazon.com\/*",
                "*:\/\/*.amazon.de\/*",
                "*:\/\/*.amazon.es\/*",
                "*:\/\/*.amazon.fr\/*",
                "*:\/\/*.amazon.in\/*",
                "*:\/\/*.amazon.it\/*"
            ],
            "js": [
                "scripts\/jquery-3.4.1.min.js",
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "tabs"
    ]
}