Whosum Social Assistant/Positive Sum Networks

Privately preserve your social experiences. Optionally share to foster Positive Sum Networks.

Whosum Social Assistant/Positive Sum Networksคืออะไร?

Whosum Social Assistant/Positive Sum Networks เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://positivesum.net และคุณลักษณะหลักของมันคือ "Privately preserve your social experiences. Optionally share to foster Positive Sum Networks."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Whosum Social Assistant/Positive Sum Networks

ดาวน์โหลดไฟล์ส่วนขยาย Whosum Social Assistant/Positive Sum Networks ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Make a searchable local copy of your Twitter network, posts, and videos. Auto-discover which follows are on Mastodon and other networks, and subscribe to updates for much more coming soon!

** NEW ** Record tweets and extract videos!

Installation and demo videos at https://whosum.com/assistant

NOTE: The browser installation prompt requests permission for "various websites". That sounds vague. The full list is: twitter.com, x.com, nitter.net, nitter.cz, and squidlr.com. The two Nitter instances provide a surveillance-free alternative to Twitter if you want to record content there instead. Squidlr is a tool you can use via the app to extract videos. Our FAQ explains how to view the open source code: https://whosum.com/faq                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Whosum Social Assistant/Positive Sum Networks Whosum Social Assistant/Positive Sum Networks
ID kgehmegmgoacobnmopblimcbmlcegcnk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/whosum-social-assistantpo/kgehmegmgoacobnmopblimcbmlcegcnk
คำอธิบาย Privately preserve your social experiences. Optionally share to foster Positive Sum Networks.
ขนาดไฟล์ 2.88 MB
จำนวนการติดตั้ง 202
เวอร์ชันปัจจุบัน 1.1.1
อัปเดตครั้งล่าสุด 2023-11-22
วันที่เผยแพร่ 2023-04-02
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา https://positivesum.net
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://whosum.com/assistant
URL หน้าช่วยเหลือ https://whosum.com/faq
URL หน้านโยบายความเป็นส่วนตัว https://whosum.com/privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Whosum Social Assistant\/Positive Sum Networks",
    "version": "1.1.1",
    "description": "Privately preserve your social experiences. Optionally share to foster Positive Sum Networks.",
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "author": "[email protected]",
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon-16.png",
            "32": "images\/icon-32.png",
            "48": "images\/icon-48.png",
            "128": "images\/icon-128.png"
        }
    },
    "content_scripts": [
        {
            "js": [
                "lib\/shared\/constants.js",
                "lib\/shared\/datatypes.js",
                "lib\/shared\/pagetypes.js",
                "lib\/shared\/appgraphs.js",
                "lib\/shared\/appschema.js",
                "lib\/shared\/settingslib.js",
                "lib\/shared\/es6lib.js",
                "lib\/shared\/strlib.js",
                "lib\/shared\/cryptolib.js",
                "lib\/shared\/emojilib.js",
                "lib\/shared\/urlparsing.js",
                "lib\/content\/recordinglib.js",
                "lib\/content\/twitter\/twitterparsing.js",
                "lib\/content\/twitter\/twitterfollowparsing.js",
                "lib\/content\/twitter\/twitterfollowrecorder.js",
                "lib\/content\/twitter\/twittertweetsrecorder.js",
                "lib\/content\/twitter\/twittertweetparsing.js",
                "lib\/content\/nitter\/nittertweetsrecorder.js",
                "lib\/content\/nitter\/nitterparsing.js",
                "lib\/content\/nitter\/nittertweetparsing.js",
                "lib\/content\/embvideo\/squiddy.js",
                "lib\/content\/recorderfactory.js",
                "content.js"
            ],
            "all_frames": true,
            "matches": [
                "https:\/\/*.twitter.com\/*",
                "https:\/\/*.x.com\/*",
                "https:\/\/*.nitter.net\/*",
                "https:\/\/*.nitter.cz\/*",
                "https:\/\/*.squidlr.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab",
        "storage",
        "unlimitedStorage"
    ],
    "cross_origin_embedder_policy": {
        "value": "require-corp"
    },
    "cross_origin_opener_policy": {
        "value": "same-origin"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
    }
}