Copy video url

Copy video url

Copy video url क्या है?

Copy video url posky द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Copy video url"।

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

screenshot
screenshot
screenshot

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

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

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

                        Play or add a Youtube video with SMPlayer (playlist).
Copy a video url that SMPlayer is able to play.
(Supported site: Youtube, Twitch, NaverTV, afreecaTV)

Play or add a Youtube video with mouse middle click on Youtube link.


Prerequisite to use play or add a Youtube video
- SMPlyaer: https://www.smplayer.info

- Modify registry
(Reference: https://docs.microsoft.com/en-us/previous-versions/windows/internet-explorer/ie-developer/platform-apis/aa767914(v=vs.85) )

HEKY_CLASSES_ROOT
  smplayer
    URL Protocol = ""
      shell
        open
          command
            (Default) = "File_Path\smplayer.exe" "%1"
  smplayer2
    URL Protocol = ""
      shell
        open
          command
            (Default) = "File_Path\smplayer.exe" -add-to-playlist "%1"


Change log

Ver 1.1
- add site (afreecaTV)

Ver 1.2
- add copy youtube url with current time                    

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

नाम Copy video url Copy video url
ID fhfmfaokjdlpcbbofolnncfegfhgoafk
आधिकारिक URL https://chromewebstore.google.com/detail/copy-video-url/fhfmfaokjdlpcbbofolnncfegfhgoafk
विवरण Copy video url
फ़ाइल का आकार 79.35 KB
स्थापना संख्या 817
वर्तमान संस्करण 1.4
अंतिम अपडेट 2019-10-24
प्रकाशन तिथि 2019-10-23
रेटिंग 2.00/5 कुल 4 रेटिंग्स
डेवलपर posky
भुगतान के प्रकार free
समर्थित भाषाएँ ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "persistent": true,
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "js\/modules\/jquery.min.js",
                "js\/youtube.js"
            ],
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "description": "Copy video url",
    "icons": {
        "16": "images\/smplayer16.png",
        "32": "images\/smplayer32.png",
        "48": "images\/smplayer48.png",
        "128": "images\/smplayer128.png"
    },
    "manifest_version": 2,
    "name": "Copy video url",
    "options_ui": {
        "chrome_style": true,
        "page": "html\/options.html"
    },
    "page_action": {
        "default_icon": {
            "16": "images\/smplayer16.png",
            "32": "images\/smplayer32.png",
            "48": "images\/smplayer48.png",
            "128": "images\/smplayer128.png"
        },
        "default_title": "Copy video url"
    },
    "permissions": [
        "declarativeContent",
        "activeTab",
        "webRequest",
        "storage",
        "contextMenus",
        "*:\/\/*\/*m3u8*",
        "*:\/\/www.twitch.tv\/*",
        "*:\/\/www.youtube.com\/watch*",
        "*:\/\/tv.naver.com\/*",
        "*:\/\/sports.news.naver.com\/tv\/index.nhn*",
        "*:\/\/vod.afreecatv.com\/*"
    ],
    "version": "1.4"
}