Clean Copy

Copy URLs from sites like Youtube and Amazon without all of the junk. Makes it nice for linking people in EMails or IM without URL…

Что такое Clean Copy?

Clean Copy - это расширение Chrome, разработанное Unknown, и его основная функция - "Copy URLs from sites like Youtube and Amazon without all of the junk. Makes it nice for linking people in EMails or IM without URL…".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Clean Copy

Скачайте файлы расширений Clean Copy в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Copy URLs from sites like Youtube and Amazon without all of the junk. Makes it nice for linking people in EMails or IM without URL shorteners.

Currently works for:
youtube.com
amazon.com
amazon.co.uk
play.google.com
maps.google.com

More sites to be added later.

Change Notes:
- Added Google Play to supported sites
- Fixed bug with Chrome sync
- Custom pages now synced across all your devices!
- Options screen for adding custom pages
- Small optimizations


Fork me on GitHub: https://github.com/Wavesonics/CleanCopy                    

Основная информация о расширении

Название Clean Copy Clean Copy
ID feafcnldgdkaeielkndolgflbegokjkb
Официальный URL https://chromewebstore.google.com/detail/clean-copy/feafcnldgdkaeielkndolgflbegokjkb
Описание Copy URLs from sites like Youtube and Amazon without all of the junk. Makes it nice for linking people in EMails or IM without URL…
Размер файла 59.43 KB
Количество установок 237
Текущая Версия 0.9
Последнее Обновление 2013-01-15
Дата публикации 2013-01-14
Рейтинг 3.86/5 Всего 7 оценок
Разработчик Unknown
Тип оплаты free
Официальный сайт расширения https://github.com/Wavesonics/CleanCopy
Поддерживаемые языки en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "0.9",
    "manifest_version": 2,
    "description": "__MSG_extDescription__",
    "default_locale": "en",
    "options_page": "options.html",
    "incognito": "spanning",
    "background": {
        "persistent": false,
        "scripts": [
            "jquery-1.8.3.min.js",
            "supportedSites.js",
            "utilities.js",
            "background.js"
        ]
    },
    "page_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_title": "Clean Copy",
        "default_popup": "popup.html"
    },
    "icons": {
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "permissions": [
        "tabs",
        "clipboardWrite",
        "storage"
    ]
}