BackSpace

push backspace button to return previous page.

BackSpace क्या है?

BackSpace seekingfor520 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "push backspace button to return previous page."।

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

screenshot

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

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

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

                        -Chinese

在chrome 52版之後,為了解決在刪除字元時誤觸的問題,上一頁的快捷鍵從「Backspace」改成必須同時按下「alt」與「←」
改成這樣之後,對於我這種想回上一頁就反射性按一下BackSpace的人不太習慣。於是就自己寫了這個plugin。一方面給自己用,一方面讓比較喜歡直接按BackSpace的人能夠下載來用

有任何關於該插件的問題歡迎告訴我


-English

After chrome v52 , if you want back previous page , you should push "alt" and "←" at same time ,now you can install this plugin to recovery the features of BackSpace button (return to previous page).

welcome to give some feedback for me.


-Version

v1.0.6

bug report(fixed):
fixed that if user can click backspace button
and user onfocus on an input element which type is include in this
array["week","time","datetime-local"] , browser will jump to previous
page.

remove the code include "console.log()"

※Define the input types array in this version
["text","password","number","search","url","email","tel","date","month","week","time","datetime-local"]

v1.0.5

bug report(fixed):
fixed when user onfocus on an input element and the type is "email"  or
"tel" or "url",if user click backspace button , browser will jump to previous page.

v1.0.4

bug report(fixed):
remove the code which will print the key code to your console when you click keyboard.

v1.0.3

bug report(fixed):
fixed that when user onfocus on an input element and type is "search", if user can click backspace button , browser will jump to previous page.

thx 乃中

v1.0.2

new features:
when user onfocus on an input element , if that type isn't equal "text" or "password",user can click backspace button to back previous page.

v1.0.1

bug report(fixed):
You click backspace button when you input password (),the type of input element will be changed to type="text" and show the password without encryption

thx 其聯

v1.0.0

BackSpace init version                    

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

नाम BackSpace BackSpace
ID hlipjhnplogjbmafbjifidjlnecnikhj
आधिकारिक URL https://chromewebstore.google.com/detail/backspace/hlipjhnplogjbmafbjifidjlnecnikhj
विवरण push backspace button to return previous page.
फ़ाइल का आकार 14.2 KB
स्थापना संख्या 401
वर्तमान संस्करण 1.0.6
अंतिम अपडेट 2016-10-12
प्रकाशन तिथि 2016-10-12
रेटिंग 4.42/5 कुल 12 रेटिंग्स
डेवलपर seekingfor520
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/NorthBei/BackSpace
समर्थित भाषाएँ zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "BackSpace",
    "version": "1.0.6",
    "manifest_version": 2,
    "author": "EricLin",
    "description": "push backspace button to return previous page.",
    "minimum_chrome_version": "52",
    "browser_action": {
        "default_title": "BackSpace"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "128": "BackSpace_128.png"
    }
}