SLEEKer
This extension allows the user quickly calculate the average Best Seller Rank of Kindle ebooks on Amazon.
Τι είναι το SLEEKer;
Το SLEEKer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Rstudioworks, και η κύρια λειτουργία του είναι "This extension allows the user quickly calculate the average Best Seller Rank of Kindle ebooks on Amazon.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης SLEEKer
Λήψη αρχείων επέκτασης SLEEKer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This extension allows the user quickly calculate the average Best Seller Rank of Kindle ebooks on Amazon.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | nllobgeilpicophinmkbeaiekdcflkbo |
Επίσημο URL | https://chrome.google.com/webstore/detail/sleeker/nllobgeilpicophinmkbeaiekdcflkbo |
Περιγραφή | This extension allows the user quickly calculate the average Best Seller Rank of Kindle ebooks on Amazon. |
Μέγεθος Αρχείου | 136 KB |
Αριθμός Εγκαταστάσεων | 30 |
Τρέχουσα Έκδοση | 1.0.1 |
Τελευταία Ενημέρωση | 2019-11-04 |
Ημερομηνία Δημοσίευσης | 2019-11-04 |
Προγραμματιστής | Rstudioworks |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
URL της Σελίδας Πολιτικής Απορρήτου | https://sleeker.pro |
Υποστηριζόμενες Γλώσσες | 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" ] } |