Sort tabs by alexa ranking

Sort browser tabs by alexa ranking

Cos'è Sort tabs by alexa ranking?

Sort tabs by alexa ranking è un'estensione di Chrome sviluppata da Sazzad Hossain (Tushar) Khan, e la sua funzione principale è "Sort browser tabs by alexa ranking".

Scarica il file CRX dell'estensione Sort tabs by alexa ranking

Scarica i file di estensione Sort tabs by alexa ranking in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Sort tabs by alexa ranking.
Just click on the icon and your tabs will be sorted by alexa ranking                    

Informazioni di Base sull'Estensione

Nome Sort tabs by alexa ranking Sort tabs by alexa ranking
ID bjijiefbfonmdjhajnicbjogaohpieom
URL Ufficiale https://chromewebstore.google.com/detail/sort-tabs-by-alexa-rankin/bjijiefbfonmdjhajnicbjogaohpieom
Descrizione Sort browser tabs by alexa ranking
Dimensione del File 43.42 KB
Conteggio Installazioni 18
Versione Corrente 0.0.5
Ultimo Aggiornamento 2017-07-18
Data di Pubblicazione 2017-07-18
Valutazione 3.00/5 Totale 2 Valutazioni
Sviluppatore Sazzad Hossain (Tushar) Khan
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/itsazzad/sort-tabs-by-alexa-ranking
URL della Pagina di Aiuto https://github.com/itsazzad/sort-tabs-by-alexa-ranking/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Sort tabs by alexa ranking",
    "version": "0.0.5",
    "manifest_version": 2,
    "description": "Sort browser tabs by alexa ranking",
    "icons": {
        "16": "icons\/icon-16.png",
        "128": "icons\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/*.alexa.com\/",
        "https:\/\/*.alexa.com\/"
    ],
    "options_ui": {
        "page": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon-19.png",
            "38": "icons\/icon-38.png"
        },
        "default_title": "Sort browser tabs by alexa ranking"
    }
}