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.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة SLEEKer

قم بتنزيل ملفات الامتداد SLEEKer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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

معلومات أساسية عن التمديد

الاسم SLEEKer SLEEKer
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
عنوان صفحة سياسة الخصوصية 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"
    ]
}