Twitter Bookmarks Search

Finally search all your Twitter Bookmarks!

What is Twitter Bookmarks Search?

Twitter Bookmarks Search is a Chrome extension developed by brandon, and its main feature is "Finally search all your Twitter Bookmarks!".

Extension Screenshots

screenshot
screenshot
screenshot

Download Twitter Bookmarks Search Extension CRX File

Download Twitter Bookmarks Search extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Let's you easily search all your twitter bookmarks.

Made by https://twitter.com/flybayer

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

Extension Basic Information

Name Twitter Bookmarks Search Twitter Bookmarks Search
ID flkokionhgagpmnhlngldhbfnblmenen
Official URL https://chromewebstore.google.com/detail/twitter-bookmarks-search/flkokionhgagpmnhlngldhbfnblmenen
Description Finally search all your Twitter Bookmarks!
File Size 1.26 MB
Installation Count 20,000
Current Version 10
Last Updated 2021-07-27
Publish Date 2021-02-27
Rating 3.34/5 Total 38 Ratings
Developer brandon
Email [email protected]
Payment Type free
Extension Website https://github.com/flybayer/twitter-bookmarks-search
Help Page URL https://github.com/flybayer/twitter-bookmarks-search/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc
Supported Languages 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
}