Twitter Bookmarks Search

Finally search all your Twitter Bookmarks!

什么是Twitter Bookmarks Search?

Twitter Bookmarks Search是由brandon开发的Chrome扩展程序,该扩展的主要功能是“Finally search all your Twitter Bookmarks!”。

扩展截图

screenshot
screenshot
screenshot

下载Twitter Bookmarks Search扩展crx文件

下载Twitter Bookmarks Search扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Let's you easily search all your twitter bookmarks.

Made by https://twitter.com/flybayer

Source code: https://github.com/flybayer/twitter-bookmarks-search                    

扩展基本信息

名称 Twitter Bookmarks Search Twitter Bookmarks Search
ID flkokionhgagpmnhlngldhbfnblmenen
官方URL https://chromewebstore.google.com/detail/twitter-bookmarks-search/flkokionhgagpmnhlngldhbfnblmenen
简介 Finally search all your Twitter Bookmarks!
文件大小 1.26 MB
安装次数 20,000
当前版本 10
更新时间 2021-07-27
上架时间 2021-02-27
评分 3.34/5 共38次评分
开发者 brandon
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/flybayer/twitter-bookmarks-search
帮助页面URL https://github.com/flybayer/twitter-bookmarks-search/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter Bookmarks Search",
    "short_name": "TB Search",
    "version": "10",
    "description": "Finally search all your Twitter Bookmarks!",
    "icons": {
        "16": "icon128.png",
        "48": "icon128.png",
        "128": "icon128.png"
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*.twitter.com\/*"
    ],
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "manifest_version": 2
}