Mark As Read
Mark a page as read by clicking on the extension icon.
Mark As Read क्या है?
Mark As Read edoreld द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Mark a page as read by clicking on the extension icon."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Mark As Read एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Extra Features: - Backup & Restore links To activate these extra features, right click on the extension icon and click on Options.
एक्सटेंशन की मूल जानकारी
नाम | Mark As Read |
ID | hiflhkmicfagennabmnfcnnlpkmidfjj |
आधिकारिक URL | https://chromewebstore.google.com/detail/mark-as-read/hiflhkmicfagennabmnfcnnlpkmidfjj |
विवरण | Mark a page as read by clicking on the extension icon. |
फ़ाइल का आकार | 11.28 KB |
स्थापना संख्या | 550 |
वर्तमान संस्करण | 1.0.0 |
अंतिम अपडेट | 2022-03-11 |
प्रकाशन तिथि | 2020-05-09 |
रेटिंग | 3.73/5 कुल 15 रेटिंग्स |
डेवलपर | edoreld |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/edoreld/mark-as-read |
सहायता पृष्ठ URL | https://github.com/edoreld/mark-as-read/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Mark As Read", "version": "1.0.0", "description": "Mark a page as read by clicking on the extension icon. ", "icons": { "128": "icon_128.png", "48": "icon_48.png", "16": "icon_16.png" }, "browser_action": [], "background": { "scripts": [ "background.js" ] }, "commands": { "mark_page": { "suggested_key": { "default": "Ctrl+Shift+Z" }, "description": "Mark\/unmark the current page" } }, "permissions": [ "activeTab", "tabs", "storage", "downloads", "unlimitedStorage" ], "options_page": "options.html" } |