Taplio X

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

Taplio Xとは何ですか?

Taplio Xはhttps://taplio.comによって開発されたChromeの拡張機能で、その主な機能は「Supercharge your LinkedIn experience: find post inspirations, consult your stats, get relevant info on people.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

Taplio X拡張機能のCRXファイルをダウンロード

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
Eメール [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\/*"
            ]
        }
    ]
}