Taplio X

Supercharge your LinkedIn experience: find post inspirations, consult your stats, get relevant info on people.

Taplio Xคืออะไร?

Taplio X เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://taplio.com และคุณลักษณะหลักของมันคือ "Supercharge your LinkedIn experience: find post inspirations, consult your stats, get relevant info on people."

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Taplio X

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

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

                        Taplio X supercharges your experience on LinkedIn and boosts your productivity.

- Access all your stats at one glance
- Find your top performing posts ever
- Uncover information about other profiles you visit and their best content
- Discover relevant viral LinkedIn posts in your niche

Simply install the extension and Taplio X will start loading next time you visit LinkedIn in your browser.                    

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

ชื่อ Taplio X Taplio X
ID dfpbcakpogbfaohnnjlgghdjkgaoiaik
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/taplio-x/dfpbcakpogbfaohnnjlgghdjkgaoiaik
คำอธิบาย Supercharge your LinkedIn experience: find post inspirations, consult your stats, get relevant info on people.
ขนาดไฟล์ 443 KB
จำนวนการติดตั้ง 25,523
เวอร์ชันปัจจุบัน 2.5.0
อัปเดตครั้งล่าสุด 2023-11-09
วันที่เผยแพร่ 2022-03-18
คะแนน 4.14/5 รวมทั้งหมด 50 คะแนน
ผู้พัฒนา https://taplio.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://taplio.com/product/linkedin-chrome-extension
URL หน้าช่วยเหลือ https://taplio.com/
URL หน้านโยบายความเป็นส่วนตัว https://taplio.com/our-privacy-policy
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "Taplio X",
    "name": "Taplio X",
    "description": "Supercharge your LinkedIn experience: find post inspirations, consult your stats, get relevant info on people.",
    "version": "2.5.0",
    "manifest_version": 3,
    "icons": {
        "16": "logo_16.png",
        "48": "logo_48.png",
        "128": "logo_128.png"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.linkedin.com\/*"
            ],
            "css": [
                "\/css\/root.css"
            ],
            "js": [
                "content.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.taplio.com\/*",
                "http:\/\/localhost:3003\/*"
            ],
            "js": [
                "apibridge.js"
            ]
        }
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "permissions": [
        "storage",
        "cookies",
        "webRequest",
        "declarativeNetRequestWithHostAccess"
    ],
    "host_permissions": [
        "*:\/\/*.linkedin.com\/",
        "*:\/\/app.taplio.com\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "logo_taplio_500.png",
                "closeicon.png",
                "logo_48.png",
                "\/front-end\/*"
            ],
            "matches": [
                "*:\/\/*.linkedin.com\/*",
                "*:\/\/linkedin.com\/*"
            ]
        }
    ]
}