Twitter Bookmarks Search

Finally search all your Twitter Bookmarks!

Wat is Twitter Bookmarks Search?

Twitter Bookmarks Search is een Chrome-extensie ontwikkeld door brandon, en de belangrijkste functie is "Finally search all your Twitter Bookmarks!".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Twitter Bookmarks Search

Download Twitter Bookmarks Search-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Let's you easily search all your twitter bookmarks.

Made by https://twitter.com/flybayer

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

Basisinformatie over de Extensie

Naam Twitter Bookmarks Search Twitter Bookmarks Search
ID flkokionhgagpmnhlngldhbfnblmenen
Officiële URL https://chromewebstore.google.com/detail/twitter-bookmarks-search/flkokionhgagpmnhlngldhbfnblmenen
Beschrijving Finally search all your Twitter Bookmarks!
Bestandsgrootte 1.26 MB
Aantal Installaties 20,000
Huidige Versie 10
Laatst Bijgewerkt 2021-07-27
Publicatiedatum 2021-02-27
Beoordeling 3.34/5 Totaal 38 Beoordelingen
Ontwikkelaar brandon
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/flybayer/twitter-bookmarks-search
Help Pagina-URL https://github.com/flybayer/twitter-bookmarks-search/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc
Ondersteunde Talen 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
}