Rick Rollback

Never get rickrolled

Rick Rollback क्या है?

Rick Rollback Super02 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Never get rickrolled"।

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

screenshot

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

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

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

                        ** DISCONTINUED **
I have discontinued this project as I am working together on antirickroll (By dnorhoj) (https://chrome.google.com/webstore/detail/antirickroll/mpnckpmpddjcgkpjkmmakcamjhceadne) so future updates will happen here. You can still continue to use this extension but I will only provide limited support for this.
--------------------------------------------------------------------------------------------------------------------------------------
This extension will prevent you from ever being rick rolled again by blocking you from being rick rolled when clicking a link. 

A preview of the extension can be seen here: https://youtu.be/89UxuY0elIo
The source code for this extension is available on GitHub here: https://github.com/Super02/Rick-Rollback

This extension only works when you have clicked on a link that goes to the song "Rick Astley - Never Gonna Give You Up" on YouTube. 

If you have any questions, suggestions, feedback, bugs, or other things that you would like to inform me about you can contact me on my mail: [email protected]                    

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

नाम Rick Rollback Rick Rollback
ID lhmfgpdnbmoiemofdclciboebgmnamkd
आधिकारिक URL https://chromewebstore.google.com/detail/rick-rollback/lhmfgpdnbmoiemofdclciboebgmnamkd
विवरण Never get rickrolled
फ़ाइल का आकार 47.93 KB
स्थापना संख्या 378
वर्तमान संस्करण 1.0
अंतिम अपडेट 2021-04-19
प्रकाशन तिथि 2020-02-17
रेटिंग 5.00/5 कुल 4 रेटिंग्स
डेवलपर Super02
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "js": [
                "warn.js"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_icon": "icons\/icon-48.png",
        "name": "Rick Rollback"
    },
    "icons": {
        "128": "icons\/icon-128.png",
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png"
    },
    "name": "Rick Rollback",
    "version": "1.0",
    "description": "Never get rickrolled",
    "manifest_version": 2,
    "web_accessible_resources": [
        "warn.html"
    ],
    "permissions": [
        "storage",
        "tabs"
    ],
    "content_security_policy": "script-src 'self' https:\/\/code.jquery.com\/jquery-3.4.1.slim.min.js https:\/\/cdn.jsdelivr.net\/npm\/[email protected]\/dist\/umd\/popper.min.js https:\/\/stackpath.bootstrapcdn.com\/bootstrap\/4.4.1\/js\/bootstrap.min.js; object-src 'self'"
}