Verify Me

Add a button to the browser to check rel=me links point back

Verify Me क्या है?

Verify Me https://kevinmarks.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add a button to the browser to check rel=me links point back"।

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

screenshot

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

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

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

                        Looks for rel="me" links on the current page, then check if they link back with a rel="me" too. Shows a green √ or red x depending on whether they do or not.                    

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

नाम Verify Me Verify Me
ID nnefkajddpfponfnmaflddipljfdlcjb
आधिकारिक URL https://chromewebstore.google.com/detail/verify-me/nnefkajddpfponfnmaflddipljfdlcjb
विवरण Add a button to the browser to check rel=me links point back
फ़ाइल का आकार 24.16 KB
स्थापना संख्या 557
वर्तमान संस्करण 0.3.1
अंतिम अपडेट 2018-11-04
प्रकाशन तिथि 2018-11-03
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर https://kevinmarks.com
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL https://github.com/indieweb/verify-me
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Verify Me",
    "short_name": "Verify Me",
    "description": "Add a button to the browser to check rel=me links point back",
    "version": "0.3.1",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content-scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_idle",
            "css": [
                "balloons.css"
            ],
            "js": [
                "balloons.js"
            ]
        }
    ],
    "permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "browser_action": {
        "default_title": "Check rel-me links on this page.",
        "default_icon": {
            "19": "icon-32.png",
            "38": "icon-32.png"
        }
    },
    "icons": {
        "32": "icon-32.png",
        "128": "icon.png"
    }
}