Piper: Web Automation Toolkit

Web automation toolkit

Piper: Web Automation Toolkit क्या है?

Piper: Web Automation Toolkit Suyambu द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Web automation toolkit"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Piper: Web Automation Toolkit एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Piper is a web automation tool that allows you to automate any task on the web. It's similar to selenium automation. But with a drag and drop programmable interface.You do not have know programming to use Piper, every block explain itself.

What can you automate?

Pretty much you can automate anything on the web, if you see something that repeat alot of times on your browser, you can use Piper to do it for you. Piper is faster than any human, so your automation will be compete much faster.

After you created a script on Piper you can create a shortcut for your script and run the automation with just one tap.

Piper features:

- Drag and drop programmable interface
- Create shortcut for each script
- Import and export your Piper script (you can write once and share the script to a new device)
- Flexible programming language                    

एक्सटेंशन की मूल जानकारी

नाम Piper: Web Automation Toolkit Piper: Web Automation Toolkit
ID oenkglediihajpaagnbjidpijklnjbcf
आधिकारिक URL https://chromewebstore.google.com/detail/piper-web-automation-tool/oenkglediihajpaagnbjidpijklnjbcf
विवरण Web automation toolkit
फ़ाइल का आकार 63.89 KB
स्थापना संख्या 139
वर्तमान संस्करण 1.1.2
अंतिम अपडेट 2023-05-23
प्रकाशन तिथि 2022-06-08
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर Suyambu
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.suyambu.net/piper
गोपनीयता नीति पृष्ठ URL https://www.suyambu.net/privacy
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Piper: Web Automation Toolkit",
    "version": "1.1.2",
    "permissions": [
        "storage",
        "scripting",
        "downloads",
        "declarativeNetRequest",
        "debugger",
        "notifications"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "mobile_user_agent_rule",
                "enabled": false,
                "path": "rules\/mobile_user_agent_rule.json"
            },
            {
                "id": "desktop_user_agent_rule",
                "enabled": false,
                "path": "rules\/desktop_user_agent_rule.json"
            }
        ]
    },
    "host_permissions": [
        ""
    ],
    "action": {
        "default_icon": {
            "16": "icons\/16.png",
            "48": "icons\/48.png",
            "128": "icons\/128.png"
        },
        "default_title": "Piper",
        "default_popup": "popup.html"
    },
    "description": "Web automation toolkit",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "author": "Jeeva",
    "background": {
        "service_worker": "worker.min.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.suyambu.net\/*",
                "http:\/\/localhost:3000\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "wakeup.js"
            ],
            "run_at": "document_start"
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/www.suyambu.net\/*",
            "http:\/\/localhost:3000\/*"
        ]
    }
}