Beep Link

Sound beep when your mouse is on link.

Beep Link क्या है?

Beep Link dadadadone द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Sound beep when your mouse is on link."।

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

screenshot

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

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

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

                        This is a Chrome extension to assist you with weak eyesight.
You can hear beep sound when your mouse is on link and can choose various tone color and sound frequency from 440Hz, 880Hz, 1320Hz, 1760Hz.

There are links that does not react.
(ex. in iframe or non-a tag link)

I assumed the use of person with weak eyesight and made it.
I don't have no idea whether you become convenient or not.
Please try it and send me a feedback.
I may be able to functional improvement.


I want to know what type of people use this chrome extension for what purpose.
Student? or something else? for joke software?
Please contact and teach me.

changelog

ver 1.2
- Supported same domain iframe

ver 1.1
- Added various tone colors
- Added a volume control
- Added a mute button


You can find me here:
Web: http://dadadadone.com                    

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

नाम Beep Link Beep Link
ID hmjhgcpmnlaepgajgbigleickdhiofgf
आधिकारिक URL https://chrome.google.com/webstore/detail/beep-link/hmjhgcpmnlaepgajgbigleickdhiofgf
विवरण Sound beep when your mouse is on link.
फ़ाइल का आकार 207 KB
स्थापना संख्या 88
वर्तमान संस्करण 1.2
अंतिम अपडेट 2019-01-05
प्रकाशन तिथि 2019-01-05
डेवलपर dadadadone
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://dadadadone.com
समर्थित भाषाएँ en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "1.2",
    "manifest_version": 2,
    "description": "__MSG_extDescription__",
    "default_locale": "en",
    "permissions": [
        "storage",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "icon\/icon_16.png",
        "48": "icon\/icon_48.png",
        "128": "icon\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at:": [
                "document_end"
            ],
            "js": [
                "js\/lib\/jquery-2.1.4.min.js",
                "js\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/lib\/jquery-2.1.4.min.js",
            "js\/background.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_icon": "icon\/icon_16.png",
        "default_title": "Option",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "sound\/*.mp3"
    ],
    "commands": {
        "command_volumeup": {
            "suggested_key": {
                "default": "Ctrl+Shift+1",
                "mac": "MacCtrl+Shift+1"
            },
            "description": "Send 'myCommand1' event to the extension"
        },
        "command_volumedown": {
            "suggested_key": {
                "default": "Ctrl+Shift+2",
                "mac": "MacCtrl+Shift+2"
            },
            "description": "Send 'myCommand2' event to the extension"
        },
        "command_mute": {
            "suggested_key": {
                "default": "Ctrl+Shift+3",
                "mac": "MacCtrl+Shift+3"
            },
            "description": "Send 'myCommand2' event to the extension"
        }
    }
}