Pin Tab
A browser action to pin a tab
Vad är Pin Tab?
Pin Tab är en Chrome-tillägg utvecklad av hal313, och dess huvudfunktion är "A browser action to pin a tab".
Tilläggsskärmbilder
Ladda ner Pin Tab-förlängningens CRX-fil
Ladda ner Pin Tab-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
A plugin to automatically pin tabs based on URL. Provides the ability to create multiple rules, disable rules and specify where the pinned tab should go. Now supports automatic moving of unpinned tabs to the far right as well as pinning new tabs or tabs opened via "Open link in new tab".
Grundläggande Information om Tillägg
Namn | Pin Tab |
ID | dgldedkigbbalaioohedddpameekglma |
Officiell webbadress | https://chromewebstore.google.com/detail/pin-tab/dgldedkigbbalaioohedddpameekglma |
Beskrivning | A browser action to pin a tab |
Filstorlek | 172 KB |
Antal Installationer | 8,789 |
Aktuell Version | 1.3.3 |
Senast Uppdaterad | 2019-04-26 |
Publiceringsdatum | 2019-04-25 |
Betyg | 4.52/5 Totalt 60 Betyg |
Utvecklare | hal313 |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "1.3.3", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { "16": "images\/icon-16x16.png", "48": "images\/icon-48x48.png", "128": "images\/icon-128x128.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/background.js" ] }, "browser_action": { "default_title": "Pin!", "default_icon": "images\/icon-48x48.png" }, "options_page": "options.html", "permissions": [ "tabs", "storage" ], "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'" } |