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
官方網址 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
}