TweetThis
Tweets the current URL
Co to jest TweetThis?
TweetThis to rozszerzenie Chrome opracowane przez Jarryd Lee, a jego główną funkcją jest „Tweets the current URL”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia TweetThis
Pobierz pliki rozszerzeń TweetThis 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
Allows for an easy one click method to tweet your current URL by clicking the tweet this button up the top right of the browser.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | dfeipfeeiojbkadlgokhllookmopmdhi |
Oficjalny URL | https://chrome.google.com/webstore/detail/tweetthis/dfeipfeeiojbkadlgokhllookmopmdhi |
Opis | Tweets the current URL |
Rozmiar pliku | 81.59 KB |
Liczba instalacji | 47 |
Aktualna Wersja | 2.1 |
Ostatnia Aktualizacja | 2014-02-13 |
Data Publikacji | 2014-02-13 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | Jarryd Lee |
Typ Płatności | free |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TweetThis", "short_name": "TweetThis", "author": "Jarryd Lee", "icons": { "128": "icon128.png", "16": "icon16.png", "48": "icon48.png" }, "description": "Tweets the current URL", "version": "2.1", "background": { "scripts": [ "jquery.js", "background.js" ], "persistent": false }, "content_scripts": [ { "js": [ "jquery.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "browser_action": { "default_icon": "icon16.png", "permissions": [ "tabs", "contextMenus", "http:\/\/*\/*", "https:\/\/*\/*", "http:\/\/api.bit.ly\/*" ] }, "web_accessible_resources": [ "jquery-1.10.1.min.map" ], "manifest_version": 2 } |