Twitter Natural Advanced Search
Perform Twitter Advanced Search in Natural Language
Qu'est-ce que Twitter Natural Advanced Search ?
Twitter Natural Advanced Search est une extension Chrome développée par https://quantleaf.com, et sa fonction principale est "Perform Twitter Advanced Search in Natural Language".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Twitter Natural Advanced Search
Téléchargez les fichiers d'extension Twitter Natural Advanced Search au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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!
Informations de Base sur l'Extension
Nom | Twitter Natural Advanced Search |
ID | fkjippcbpjcnjfoohfhaghfelfanamee |
URL Officiel | https://chromewebstore.google.com/detail/twitter-natural-advanced/fkjippcbpjcnjfoohfhaghfelfanamee |
Description | Perform Twitter Advanced Search in Natural Language |
Taille du Fichier | 15.02 KB |
Nombre d'Installations | 86 |
Version Actuelle | 0.0.9 |
Dernière Mise à Jour | 2021-03-25 |
Date de Publication | 2021-01-20 |
Évaluation | 3.33/5 Total 3 Évaluations |
Développeur | https://quantleaf.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/quantleaf/twitter-natural-advanced-search |
URL de la Page d'Aide | https://github.com/quantleaf/twitter-natural-advanced-search/issues |
URL de la Page de Politique de Confidentialité | https://quantleaf.com/legal/privacy |
Langues Prises en Charge | 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 } |