Tweet Peep 👀
Peep Thoughts on Twitter
Vad är Tweet Peep 👀?
Tweet Peep 👀 är en Chrome-tillägg utvecklad av https://glasp.co, och dess huvudfunktion är "Peep Thoughts on Twitter".
Tilläggsskärmbilder
Ladda ner Tweet Peep 👀-förlängningens CRX-fil
Ladda ner Tweet Peep 👀-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Tweet Peep 👀 gives you instant, one-click access to what other people are saying about the articles and videos you're browsing.
Grundläggande Information om Tillägg
Namn | Tweet Peep 👀 |
ID | naajicfpnocgkefffkgekndknlifgagb |
Officiell webbadress | https://chromewebstore.google.com/detail/tweet-peep-%F0%9F%91%80/naajicfpnocgkefffkgekndknlifgagb |
Beskrivning | Peep Thoughts on Twitter |
Filstorlek | 26.24 KB |
Antal Installationer | 214 |
Aktuell Version | 1.1.3 |
Senast Uppdaterad | 2023-08-25 |
Publiceringsdatum | 2021-02-23 |
Betyg | 5.00/5 Totalt 4 Betyg |
Utvecklare | https://glasp.co |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://www.notion.so/Tweet-Peep-809e1c498f8a4e0889d2a82baf4dfcb1 |
URL till Sekretesspolicy Sidan | https://www.glasp.co/privacy-policy |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tweet Peep \ud83d\udc40", "version": "1.1.3", "manifest_version": 3, "description": "Peep Thoughts on Twitter", "background": { "service_worker": "background.js", "type": "module" }, "action": { "default_icon": { "48": "src\/images\/48.png" }, "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "src\/contentscript\/content.js" ], "all_frames": false } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "icons": { "16": "src\/images\/16.png", "48": "src\/images\/48.png", "128": "src\/images\/128.png" }, "permissions": [ "tabs", "contextMenus" ] } |