Twitter Natural Advanced Search

Perform Twitter Advanced Search in Natural Language

Cos'è Twitter Natural Advanced Search?

Twitter Natural Advanced Search è un'estensione di Chrome sviluppata da https://quantleaf.com, e la sua funzione principale è "Perform Twitter Advanced Search in Natural Language".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Twitter Natural Advanced Search

Scarica i file di estensione Twitter Natural Advanced Search 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

                        Make your Twitter search field auto detect and perform advanced searches. Just write a natural language like advanced search and press enter to perform it.
It supports all possible advanced search properties!

Examples
- from elonmusk about bitcoin between 2011-01-10 and one year ago include links english‎
- bitcoins news today
- only replies from jeff bezos about amazon

You can try it out before downloading at https://quantleaf.com.

This extension was built using Quantleaf Query, a service that lets you query tables using natural language. The source code for the extension can be found at https://github.com/quantleaf/twitter-natural-advanced-search

Enjoy!                    

Informazioni di Base sull'Estensione

Nome Twitter Natural Advanced Search Twitter Natural Advanced Search
ID fkjippcbpjcnjfoohfhaghfelfanamee
URL Ufficiale https://chromewebstore.google.com/detail/twitter-natural-advanced/fkjippcbpjcnjfoohfhaghfelfanamee
Descrizione Perform Twitter Advanced Search in Natural Language
Dimensione del File 15.02 KB
Conteggio Installazioni 86
Versione Corrente 0.0.9
Ultimo Aggiornamento 2021-03-25
Data di Pubblicazione 2021-01-20
Valutazione 3.33/5 Totale 3 Valutazioni
Sviluppatore https://quantleaf.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/quantleaf/twitter-natural-advanced-search
URL della Pagina di Aiuto https://github.com/quantleaf/twitter-natural-advanced-search/issues
URL della Pagina della Politica sulla Privacy https://quantleaf.com/legal/privacy
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Perform Twitter Advanced Search in Natural Language",
    "version": "0.0.9",
    "name": "Twitter Natural Advanced Search",
    "permissions": [],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "inject.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/logo-16x16.png",
            "32": "images\/logo-32x32.png",
            "48": "images\/logo-48x48.png",
            "128": "images\/logo-128x128.png"
        }
    },
    "icons": {
        "16": "images\/logo-16x16.png",
        "32": "images\/logo-32x32.png",
        "48": "images\/logo-48x48.png",
        "128": "images\/logo-128x128.png"
    },
    "manifest_version": 2
}