Twitter Natural Advanced Search
Perform Twitter Advanced Search in Natural Language
什么是Twitter Natural Advanced Search?
Twitter Natural Advanced Search是由https://quantleaf.com开发的Chrome扩展程序,该扩展的主要功能是“Perform Twitter Advanced Search in Natural Language”。
扩展截图
下载Twitter Natural Advanced Search扩展crx文件
下载Twitter Natural Advanced Search扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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! 扩展基本信息
| 名称 | |
| ID | fkjippcbpjcnjfoohfhaghfelfanamee |
| 官方URL | https://chromewebstore.google.com/detail/twitter-natural-advanced/fkjippcbpjcnjfoohfhaghfelfanamee |
| 简介 | Perform Twitter Advanced Search in Natural Language |
| 文件大小 | 15.02 KB |
| 安装次数 | 86 |
| 当前版本 | 0.0.9 |
| 更新时间 | 2021-03-25 |
| 上架时间 | 2021-01-20 |
| 评分 | 3.33/5 共3次评分 |
| 开发者 | https://quantleaf.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/quantleaf/twitter-natural-advanced-search |
| 帮助页面URL | https://github.com/quantleaf/twitter-natural-advanced-search/issues |
| 隐私政策页面URL | https://quantleaf.com/legal/privacy |
| 支持的语言 | 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
} | |