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
Eメール [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
}