URLDefenseDecoder

Copy a decoded Proofpoint URLDefense URL to clipboard via Chrome's right-click context menu.

URLDefenseDecoder là gì?

URLDefenseDecoder là một tiện ích mở rộng Chrome được phát triển bởi Fractal Systems, và tính năng chính của nó là "Copy a decoded Proofpoint URLDefense URL to clipboard via Chrome's right-click context menu.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng URLDefenseDecoder

Tải xuống các tệp mở rộng URLDefenseDecoder dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        # URLDefenseDecoder
URLDefenseDecoder is a Chrome Extension which provides the ability to "copy a decoded Proofpoint URLDefense URL to clipboard via Chrome's right-click context menu."

## Usage
Right-Click a URLDefense encoded URL, or triple-click-select-all of a plaintext URLDefense URL, and right-click to get a Chrome Context Menu option called "Copy URLDefense-Decoded-Link". Click that menu item and the link will be copied to your clipboard. Or you can also manually paste encoded urls into the extension popup box from the toolbar.

## Known/Potential Issues

All of which should be cleaned up in due time...
1. Nested context menu entries occur when selecting a hyperlink and having already selected, and/or still highlighting, a previous URLDefense URL.
2. Code is not commented, there's no error handling/logging, sorry
3. I've only tested for /v2 URLs as I don't have access to /v1 Proofpoint, but I assume /v1 will work. And it has not been tested with outrageously complex syntax, but it should work well.

[Please report issues!](https://github.com/TryTryAgain/URLDefenseDecoder/issues)

## Contributing

1. Fork it!
2. Create your feature branch: `git checkout -b my-new-feature`
3. Commit your changes: `git commit -am 'Add some feature, fixed XYZ bugs.'`
4. Push to the branch: `git push origin my-new-feature`
5. Submit a pull request :D

## Changelog

#### 2017-07-28
v0.0.2 - Bug Fixes and Enhancements

- Now the context menu only shows up when selecting a URLDefense URL
- The duplicate/nested context menu entries for hyperlinks no longer shows up (granted you're not encountering a newly discovered bug)
- The popup can now be used for manual decoding of pasted URLDefense URLs
- New icon, higher resolution support
- Dedicated CHANGELOG file


#### 2017-07-26
v0.0.1 - Initial Commit

## Credits/Licenses

Chrome Extension: [Michael Lawler](https://github.com/TryTryAgain)
- Released under [GNU GPLv3](https://www.gnu.org/licenses/gpl-3.0.en.html)

Icon Artwork: Paul Davey aka [Mattahan @ DeviantArt](http://mattahan.deviantart.com/art/Buuf-37966044)
  - [All Rights Reserved.](https://creativecommons.org/licenses/by-nc-sa/2.5/)

[Original Python Implementation](https://help.proofpoint.com/@api/deki/files/177/URLDefenseDecode.py?revision=1) and Inspiration                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên URLDefenseDecoder URLDefenseDecoder
ID gcebmhodconalkpiebfgodafbglpmjjm
URL Chính Thức https://chromewebstore.google.com/detail/urldefensedecoder/gcebmhodconalkpiebfgodafbglpmjjm
Mô tả Copy a decoded Proofpoint URLDefense URL to clipboard via Chrome's right-click context menu.
Kích Thước Tệp 352 KB
Số Lần Cài Đặt 291
Phiên Bản Hiện Tại 0.0.2
Cập Nhật Lần Cuối 2017-08-08
Ngày Phát Hành 2017-08-07
Đánh Giá 4.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Fractal Systems
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/TryTryAgain/URLDefenseDecoder
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "URLDefenseDecoder",
    "description": "Copy a decoded Proofpoint URLDefense URL to clipboard via Chrome's right-click context menu.",
    "version": "0.0.2",
    "browser_action": {
        "default_icon": {
            "19": "icons\/19.png",
            "38": "icons\/38.png"
        },
        "default_popup": "popup.html",
        "default_title": "URLDefenseDecoder"
    },
    "permissions": [
        "contextMenus",
        "clipboardWrite"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "matches": [
            ""
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "minimum_chrome_version": "6.0.472",
    "icons": {
        "16": "icons\/16.png",
        "19": "icons\/19.png",
        "32": "icons\/32.png",
        "38": "icons\/38.png",
        "48": "icons\/48.png",
        "64": "icons\/64.png",
        "72": "icons\/72.png",
        "96": "icons\/96.png",
        "128": "icons\/128.png",
        "256": "icons\/256.png"
    }
}