Twitter Bookmarks Search

Finally search all your Twitter Bookmarks!

Twitter Bookmarks Searchคืออะไร?

Twitter Bookmarks Search เป็นส่วนขยายของ Chrome ที่พัฒนาโดย brandon และคุณลักษณะหลักของมันคือ "Finally search all your Twitter Bookmarks!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitter Bookmarks Search

ดาวน์โหลดไฟล์ส่วนขยาย 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
}