QuickTweet
A Twitter ToolKit by Will
Что такое QuickTweet?
QuickTweet - это расширение Chrome, разработанное cobwebsteruk, и его основная функция - "A Twitter ToolKit by Will".
Снимки экрана расширения
Скачать файл CRX расширения QuickTweet
Скачайте файлы расширений QuickTweet в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
A Quick Tweeting tool which allows you to tweet selections, pages, images and URLS without the need of typing or going to twitter.
Right click anywhere on a page to tweet the page URL
Right click selected text to tweet the text
Right click a image to tweet the image
Right click a link to tweet the link Основная информация о расширении
| Название | |
| ID | glongeojkcbhnkhjjlbijdcfgmndigjp |
| Официальный URL | https://chromewebstore.google.com/detail/quicktweet/glongeojkcbhnkhjjlbijdcfgmndigjp |
| Описание | A Twitter ToolKit by Will |
| Размер файла | 15.44 KB |
| Количество установок | 140 |
| Текущая Версия | 1.1 |
| Последнее Обновление | 2017-07-10 |
| Дата публикации | 2017-07-10 |
| Рейтинг | 5.00/5 Всего 1 оценок |
| Разработчик | cobwebsteruk |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "QuickTweet",
"description": "A Twitter ToolKit by Will",
"version": "1.1",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"background": {
"scripts": [
"background.js"
]
},
"icons": {
"64": "bigicon.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"myscript.js"
]
}
],
"permissions": [
"activeTab",
"https:\/\/ajax.googleapis.com\/",
"contextMenus"
]
} | |