Web To JSON

Take value from web and take json api updated

Web To JSONとは何ですか?

Web To JSONはbmkaradumanによって開発されたChromeの拡張機能で、その主な機能は「Take value from web and take json api updated」です。

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

screenshot
screenshot
screenshot

Web To JSON拡張機能のCRXファイルをダウンロード

Web To JSON拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Take Data from Any Web Site and change into the JSON Format.

Transform any text element on the web into a dynamic JSON API with our easy-to-use Chrome extension. 'Dynamic Text Selector to JSON' enables users to effortlessly select text elements and convert them into a structured JSON format. Whether you're a developer, data enthusiast, or simply looking to extract and structure web content, our tool streamlines the process with precision. Experience a seamless web-to-JSON journey like never before

You have 3 options: 
Static: You can select a data, if you are certain that the data you will fetch wil always be in that area.
Table: You search for a value in a table in web site and retrieve corresponding table
Query: If the value not in a table and you are not certain that value place can be change, then you can create if condition. 

And finally you can take JSON API. If you want to use up to date, your chrome extension should be open.                    

拡張機能の基本情報

名前 Web To JSON Web To JSON
ID kdeflnbamgblaaeggehciepaccjiojgd
公式URL https://chromewebstore.google.com/detail/web-to-json/kdeflnbamgblaaeggehciepaccjiojgd
説明 Take value from web and take json api updated
ファイルサイズ 145 KB
インストール数 31
現在のバージョン 1.1
最終更新日 2023-09-20
公開日 2023-09-10
開発者 bmkaraduman
Eメール [email protected]
支払い方法 in_app
拡張機能のウェブサイト https://twitter.com/webtojson
プライバシーポリシーページのURL https://webtojson.blogspot.com/2023/09/privacy-policy-for-web-to-json-chrome.html
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Web To JSON",
    "version": "1.1",
    "description": "Take value from web and take json api updated",
    "permissions": [
        "activeTab",
        "storage",
        "scripting",
        "tabs",
        "alarms",
        "identity",
        "identity.email"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_width": 500,
        "default_height": 500,
        "default_title": "Keep Updated",
        "default_icon": {
            "16": "image\/ice_aktiv.png"
        }
    },
    "icons": {
        "16": "image\/ice_16.png",
        "48": "image\/ice_48.png",
        "128": "image\/ice_128.png"
    },
    "background": {
        "type": "module",
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}