QuickTweet
A Twitter ToolKit by Will
Co to jest QuickTweet?
QuickTweet to rozszerzenie Chrome opracowane przez cobwebsteruk, a jego główną funkcją jest „A Twitter ToolKit by Will”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia QuickTweet
Pobierz pliki rozszerzeń QuickTweet w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | glongeojkcbhnkhjjlbijdcfgmndigjp |
| Oficjalny URL | https://chromewebstore.google.com/detail/quicktweet/glongeojkcbhnkhjjlbijdcfgmndigjp |
| Opis | A Twitter ToolKit by Will |
| Rozmiar pliku | 15.44 KB |
| Liczba instalacji | 140 |
| Aktualna Wersja | 1.1 |
| Ostatnia Aktualizacja | 2017-07-10 |
| Data Publikacji | 2017-07-10 |
| Ocena | 5.00/5 Łącznie 1 Oceny |
| Deweloper | cobwebsteruk |
| [email protected] | |
| Typ Płatności | free |
| Obsługiwane Języki | 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"
]
} | |